Fix a possible null pointer crash in FILEDLG95_LOOKIN_Init.

This commit is contained in:
Rein Klazes 2004-03-20 19:22:17 +00:00 committed by Alexandre Julliard
parent cbe0e499df
commit a56d40f490
1 changed files with 1 additions and 1 deletions

View File

@ -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;
} }