diff options
author | pommicket <pommicket@gmail.com> | 2024-09-08 12:41:26 -0700 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2024-09-08 12:42:41 -0700 |
commit | a6dd449d39b5b5d0e7c2e9d5e4ddbb4505ba0cd7 (patch) | |
tree | e35c7691ae6de9249d93023fc5621c7291ccd1c4 | |
parent | fd1e2b3d3ccd26fb5bd9d7cbced04f673cfd19ba (diff) |
Fix tiny memory leak on windows
-rw-r--r-- | main.c | 5 | ||||
-rw-r--r-- | windows_installer/ted/ted.vdproj | 6 |
2 files changed, 7 insertions, 4 deletions
@@ -15,6 +15,7 @@ FUTURE FEATURES: - restart LSP server automatically? - LSP request timeout - reflow command +- editing files with invalid UTF-8 */ /* @@ -480,7 +481,9 @@ int main(int argc, char **argv) { } if (fs_path_type(ted->local_data_dir) == FS_NON_EXISTENT) fs_mkdir(ted->local_data_dir); - + #if _WIN32 + free(appdata); + #endif } { diff --git a/windows_installer/ted/ted.vdproj b/windows_installer/ted/ted.vdproj index aac4438..4e3d1e7 100644 --- a/windows_installer/ted/ted.vdproj +++ b/windows_installer/ted/ted.vdproj @@ -620,15 +620,15 @@ { "Name" = "8:Microsoft Visual Studio" "ProductName" = "8:ted" - "ProductCode" = "8:{54706FEE-3070-4909-A56B-1FCFE6EB66C3}" - "PackageCode" = "8:{BFB90C03-ECC1-4511-9D2A-C6FEAB445A37}" + "ProductCode" = "8:{FE089CC3-B77A-4ECE-94D1-D27FEB47F0BD}" + "PackageCode" = "8:{EEB36C34-97D6-4E30-B692-0867FC18BC67}" "UpgradeCode" = "8:{844F6C2B-DF3B-4A81-9BD5-603401BBA651}" "AspNetVersion" = "8:2.0.50727.0" "RestartWWWService" = "11:FALSE" "RemovePreviousVersions" = "11:TRUE" "DetectNewerInstalledVersion" = "11:FALSE" "InstallAllUsers" = "11:FALSE" - "ProductVersion" = "8:24.09.0800" + "ProductVersion" = "8:24.09.0801" "Manufacturer" = "8:ted" "ARPHELPTELEPHONE" = "8:" "ARPHELPLINK" = "8:" |