wininet: HTTP_HttpQueryInfoW deals with bytes, not characters so update the callers that have this wrong assumption.

Robert Shearman rob at codeweavers.com
Fri Jan 12 19:19:18 CST 2007


---
  dlls/wininet/http.c |    6 +++---
  1 files changed, 3 insertions(+), 3 deletions(-)
-------------- next part --------------
diff --git a/dlls/wininet/http.c b/dlls/wininet/http.c
index 07dc596..0eab832 100644
--- a/dlls/wininet/http.c
+++ b/dlls/wininet/http.c
@@ -665,7 +665,7 @@ BOOL WINAPI HttpEndRequestW(HINTERNET hR
             (dwCode==302 || dwCode==301))
         {
             WCHAR szNewLocation[2048];
-            dwBufferSize=2048;
+            dwBufferSize=sizeof(szNewLocation);
             if(HTTP_HttpQueryInfoW(lpwhr,HTTP_QUERY_LOCATION,szNewLocation,&dwBufferSize,NULL))
             {
 	            static const WCHAR szGET[] = { 'G','E','T', 0 };
@@ -2373,7 +2373,7 @@ BOOL WINAPI HTTP_HttpSendRequestW(LPWINI
             {
                 DWORD dwCode,dwCodeLength=sizeof(DWORD);
                 WCHAR szNewLocation[2048];
-                dwBufferSize=2048;
+                dwBufferSize=sizeof(szNewLocation);
                 if (HTTP_HttpQueryInfoW(lpwhr,HTTP_QUERY_FLAG_NUMBER|HTTP_QUERY_STATUS_CODE,&dwCode,&dwCodeLength,NULL) &&
                     (dwCode==HTTP_STATUS_REDIRECT || dwCode==HTTP_STATUS_MOVED) &&
                     HTTP_HttpQueryInfoW(lpwhr,HTTP_QUERY_LOCATION,szNewLocation,&dwBufferSize,NULL))
@@ -2986,7 +2986,7 @@ static VOID HTTP_CloseConnection(LPWININ
 BOOL HTTP_FinishedReading(LPWININETHTTPREQW lpwhr)
 {
     WCHAR szConnectionResponse[20];
-    DWORD dwBufferSize = sizeof(szConnectionResponse)/sizeof(szConnectionResponse[0]);
+    DWORD dwBufferSize = sizeof(szConnectionResponse);
 
     TRACE("\n");
 


More information about the wine-patches mailing list