Fix free in minimfc (#107)

This commit is contained in:
Anders Jenbo 2025-05-18 05:45:37 +02:00 committed by GitHub
parent 9b8bbc3e76
commit 95eed31087
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -81,7 +81,7 @@ int main(int argc, char* argv[])
} }
int result = wndTop->ExitInstance(); int result = wndTop->ExitInstance();
free(afxCurrentAppName); delete[] afxCurrentAppName;
return result; return result;
} }