Commit 47eec813 authored by Gabriel Ivăncescu's avatar Gabriel Ivăncescu Committed by Alexandre Julliard

mshtml/tests: Fix XHR leak in test_window_refs.

parent 9bdfe8ee
......@@ -3320,6 +3320,7 @@ static void test_window_refs(IHTMLDocument2 *doc)
hres = IHTMLXMLHttpRequestFactory_create(xhr_factory, &xhr);
ok(hres == S_OK, "create failed: %08lx\n", hres);
IHTMLXMLHttpRequestFactory_Release(xhr_factory);
IHTMLXMLHttpRequest_Release(xhr);
hres = IHTMLImageElementFactory_create(image_factory, vempty, vempty, &img_elem);
ok(hres == S_OK, "create failed: %08lx\n", hres);
......
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