Commit a56d40f4 authored by Rein Klazes's avatar Rein Klazes Committed by Alexandre Julliard

Fix a possible null pointer crash in FILEDLG95_LOOKIN_Init.

parent cbe0e499
...@@ -2366,9 +2366,9 @@ static HRESULT FILEDLG95_LOOKIN_Init(HWND hwndCombo) ...@@ -2366,9 +2366,9 @@ static HRESULT FILEDLG95_LOOKIN_Init(HWND hwndCombo)
} }
IEnumIDList_Release(lpeRoot); IEnumIDList_Release(lpeRoot);
} }
IShellFolder_Release(psfRoot);
} }
IShellFolder_Release(psfRoot);
COMDLG32_SHFree(pidlDrives); COMDLG32_SHFree(pidlDrives);
return NOERROR; return NOERROR;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment