From 0a6ab4b7135ae87c3d331df16040e85d9a3afc8f Mon Sep 17 00:00:00 2001 From: Victor Martinez Calvo Date: Wed, 3 Apr 2013 19:37:44 +0200 Subject: [PATCH] msxml3: Fix SafeArrayGetUBond check in BindStatusCallback_create. --- dlls/msxml3/httprequest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msxml3/httprequest.c b/dlls/msxml3/httprequest.c index 681ccab8987..682381dcb15 100644 --- a/dlls/msxml3/httprequest.c +++ b/dlls/msxml3/httprequest.c @@ -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);