shdocvw: Fix a memory leak in the tests.

Found by Valgrind.
This commit is contained in:
Huw Davies 2009-12-12 12:19:05 +00:00 committed by Alexandre Julliard
parent 998d9d9a8f
commit 53ee807a3b
1 changed files with 3 additions and 2 deletions

View File

@ -216,9 +216,10 @@ static void test_ShortcutFolder(void) {
ok (pidlCurFolder->mkid.cb == 20 && ((LPSHITEMID)((BYTE*)pidlCurFolder+20))->cb == 0 &&
IsEqualCLSID(&CLSID_WineTest, (REFCLSID)((LPBYTE)pidlCurFolder+4)),
"GetCurFolder returned unexpected pidl!\n");
ILFree(pidlCurFolder);
IPersistFolder3_Release(pWineTestPersistFolder);
cleanup:
unregister_keys(HKEY_CLASSES_ROOT, HKEY_CLASSES_ROOT_keys, 1);
}