diff options
Diffstat (limited to 'Source/MFCDialog/CMakeSetupDialog.cpp')
-rw-r--r-- | Source/MFCDialog/CMakeSetupDialog.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Source/MFCDialog/CMakeSetupDialog.cpp b/Source/MFCDialog/CMakeSetupDialog.cpp index 0505e50..d6819eb 100644 --- a/Source/MFCDialog/CMakeSetupDialog.cpp +++ b/Source/MFCDialog/CMakeSetupDialog.cpp @@ -219,6 +219,17 @@ int CALLBACK CMakeSetupDialog_SetSelProc( HWND hWnd, UINT uMsg, return 0; } +inline void ILFree(LPITEMIDLIST pidl) +{ + LPMALLOC pMalloc; + if (pidl) + { + SHGetMalloc(&pMalloc); + pMalloc->Free( pidl); + pMalloc->Release(); + } +} + // Browse button bool CMakeSetupDialog::Browse(CString &result, const char *title) @@ -243,6 +254,7 @@ bool CMakeSetupDialog::Browse(CString &result, const char *title) { result = szPathName; } + ILFree(pidl); return bSuccess; } |