mshtml: Fixed a crash due to missing typelib marshalling on 64bit.

Signed-off-by: Marcus Meissner <meissner@suse.de>
Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Marcus Meissner 2017-11-14 15:50:02 +01:00 committed by Alexandre Julliard
parent 2d49ba4f29
commit ac7768bfce
1 changed files with 4 additions and 0 deletions

View File

@ -6301,6 +6301,10 @@ static void test_open_window(IHTMLDocument2 *doc, BOOL do_block)
CHECK_CALLED(EvaluateNewWindow);
ok(hres == S_OK, "open failed: %08x\n", hres);
if (hres != S_OK) {
IHTMLWindow2_Release(window);
return;
}
if(do_block) {
ok(!new_window, "new_window != NULL\n");