shell32/tests: Do not leak shell folder references.

This commit is contained in:
Thomas Faber 2015-06-26 20:43:22 +02:00 committed by Alexandre Julliard
parent 392736c5e8
commit 9353a36d8f
1 changed files with 2 additions and 0 deletions

View File

@ -77,6 +77,7 @@ static void test_parse_for_entire_network(void)
attr = ~0;
hr = IShellFolder_ParseDisplayName(psfDesktop, NULL, NULL, entire_network_path, &eaten, &pidl, &attr);
IShellFolder_Release(psfDesktop);
if (hr == HRESULT_FROM_WIN32(ERROR_BAD_NET_NAME) ||
hr == HRESULT_FROM_WIN32(ERROR_NO_NET_OR_BAD_PATH) ||
hr == HRESULT_FROM_WIN32(ERROR_INVALID_PARAMETER))
@ -125,6 +126,7 @@ static void test_parse_for_control_panel(void)
"Unexpected attributes : %08x\n", attr);
ILFree(pidl);
IShellFolder_Release(psfDesktop);
}
static void test_printers_folder(void)