[1/3] winhttp: Properly test a boolean variant.

Hans Leidekker hans at codeweavers.com
Mon Sep 5 04:45:45 CDT 2011


---
 dlls/winhttp/request.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/winhttp/request.c b/dlls/winhttp/request.c
index a3c2207..c46ce21 100644
--- a/dlls/winhttp/request.c
+++ b/dlls/winhttp/request.c
@@ -2541,7 +2541,7 @@ static HRESULT WINAPI winhttp_request_Open(
     path[uc.dwUrlPathLength + uc.dwExtraInfoLength] = 0;
 
     if (!(verb = strdupW( method ))) goto error;
-    if (V_BOOL( &async ) == VARIANT_TRUE) flags |= WINHTTP_FLAG_ASYNC;
+    if (V_BOOL( &async )) flags |= WINHTTP_FLAG_ASYNC;
     if (!(hsession = WinHttpOpen( user_agentW, WINHTTP_ACCESS_TYPE_DEFAULT_PROXY, NULL, NULL, flags )))
     {
         err = get_last_error();
-- 
1.7.4.1







More information about the wine-patches mailing list