Commit 1d61146c authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Fixed ref count handling in events.c.

parent a96606e6
......@@ -1037,7 +1037,6 @@ static HRESULT WINAPI iframe_onreadystatechange(IDispatchEx *iface, DISPID id, L
str = NULL;
hres = IHTMLFrameBase2_get_readyState(iframe, &str);
IHTMLFrameBase2_Release(iframe);
ok(hres == S_OK, "get_readyState failed: %08x\n", hres);
ok(str != NULL, "readyState == NULL\n");
ok(!lstrcmpW(str, V_BSTR(&v)), "ready states differ\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