ieframe/tests: Fix IShellUIHelper instance leak (Valgrind).

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2016-11-09 22:40:16 +03:00 committed by Alexandre Julliard
parent 73924a45d6
commit 153c234683
1 changed files with 1 additions and 0 deletions

View File

@ -3393,6 +3393,7 @@ static void test_external(IWebBrowser2 *unk)
hres = IDispatch_QueryInterface(disp, &IID_IShellUIHelper, (void**)&uihelper);
ok(hres == S_OK, "Could not get IShellUIHelper iface: %08x\n", hres);
IShellUIHelper_Release(uihelper);
IDispatch_Release(disp);
}
IDocHostUIHandler2_Release(dochost);