Commit 0a6ab4b7 authored by Victor Martinez Calvo's avatar Victor Martinez Calvo Committed by Alexandre Julliard

msxml3: Fix SafeArrayGetUBond check in BindStatusCallback_create.

parent 4b98d789
......@@ -722,7 +722,7 @@ static HRESULT BindStatusCallback_create(httprequest* This, BindStatusCallback *
heap_free(bsc);
return hr;
}
if ((hr = SafeArrayGetUBound(sa, 1, &size) != S_OK))
if ((hr = SafeArrayGetUBound(sa, 1, &size)) != S_OK)
{
SafeArrayUnaccessData(sa);
heap_free(bsc);
......
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