mshtml/tests: Make sure return value is used (LLVM/Clang).

This commit is contained in:
Austin English 2011-02-09 13:43:51 -08:00 committed by Alexandre Julliard
parent c549e34255
commit 0161db5e87
1 changed files with 1 additions and 0 deletions

View File

@ -984,6 +984,7 @@ static HRESULT WINAPI iframe_onreadystatechange(IDispatchEx *iface, DISPID id, L
ok(hres == S_OK, "get_document failed: %08x\n", hres);
hres = IHTMLDocument2_get_readyState(iframe_doc, &str2);
ok(hres == S_OK, "get_document failed: %08x\n", hres);
ok(!lstrcmpW(str, str2), "unexpected document readyState %s\n", wine_dbgstr_w(str2));
SysFreeString(str2);