Commit 53b73055 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

mshtml/tests: Remove null check after dereference (Coverity).

parent 286174a5
...@@ -2578,7 +2578,7 @@ static IHTMLWindow2 *get_iframe_window(IHTMLIFrameElement *iframe) ...@@ -2578,7 +2578,7 @@ static IHTMLWindow2 *get_iframe_window(IHTMLIFrameElement *iframe)
ok(hres == S_OK, "get_contentWindow failed: %08x\n", hres); ok(hres == S_OK, "get_contentWindow failed: %08x\n", hres);
ok(window != NULL, "window == NULL\n"); ok(window != NULL, "window == NULL\n");
if(base) IHTMLFrameBase2_Release(base); IHTMLFrameBase2_Release(base);
return window; return window;
} }
......
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