msxml3: Fix SafeArrayGetUBond check in BindStatusCallback_create.

This commit is contained in:
Victor Martinez Calvo 2013-04-03 19:37:44 +02:00 committed by Alexandre Julliard
parent 4b98d78951
commit 0a6ab4b713
1 changed files with 1 additions and 1 deletions

View File

@ -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);