Fix free in minimfc

This commit is contained in:
Anders Jenbo 2025-05-18 05:38:35 +02:00
parent 9b8bbc3e76
commit 4b9b75bd4d

View File

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