shell32/tests: Remove redundant NULL checks before CoTaskMemFree().
Signed-off-by: Michael Stefaniuc <mstefani@redhat.de> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
b5a7853b86
commit
afe0ba175c
|
@ -248,10 +248,8 @@ static void test_click_make_new_folder_button(void)
|
||||||
shfileop.fFlags = FOF_NOCONFIRMATION|FOF_NOERRORUI|FOF_SILENT;
|
shfileop.fFlags = FOF_NOCONFIRMATION|FOF_NOERRORUI|FOF_SILENT;
|
||||||
SHFileOperationA(&shfileop);
|
SHFileOperationA(&shfileop);
|
||||||
|
|
||||||
if (pidl)
|
CoTaskMemFree(pidl);
|
||||||
CoTaskMemFree(pidl);
|
CoTaskMemFree(test_folder_pidl);
|
||||||
if (test_folder_pidl)
|
|
||||||
CoTaskMemFree(test_folder_pidl);
|
|
||||||
test_folder_object->lpVtbl->Release(test_folder_object);
|
test_folder_object->lpVtbl->Release(test_folder_object);
|
||||||
|
|
||||||
CoUninitialize();
|
CoUninitialize();
|
||||||
|
@ -346,16 +344,12 @@ static void test_selection(void)
|
||||||
/* test without flags */
|
/* test without flags */
|
||||||
bi.ulFlags = 0;
|
bi.ulFlags = 0;
|
||||||
pidl = SHBrowseForFolderA(&bi);
|
pidl = SHBrowseForFolderA(&bi);
|
||||||
|
CoTaskMemFree(pidl);
|
||||||
if (pidl)
|
|
||||||
CoTaskMemFree(pidl);
|
|
||||||
|
|
||||||
/* test with flag */
|
/* test with flag */
|
||||||
bi.ulFlags = BIF_NEWDIALOGSTYLE;
|
bi.ulFlags = BIF_NEWDIALOGSTYLE;
|
||||||
pidl = SHBrowseForFolderA(&bi);
|
pidl = SHBrowseForFolderA(&bi);
|
||||||
|
CoTaskMemFree(pidl);
|
||||||
if (pidl)
|
|
||||||
CoTaskMemFree(pidl);
|
|
||||||
|
|
||||||
IShellFolder_Release(desktop_object);
|
IShellFolder_Release(desktop_object);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue