Commit ac7768bf authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

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

parent 2d49ba4f
......@@ -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");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment