dlls/wininet/http.c: HTTP_HttpOpenRequestA

Uwe Bonnes bon at elektron.ikp.physik.tu-darmstadt.de
Fri May 16 03:22:22 CDT 2003


Changelog:
	 dlls/wininet/http.c: HTTP_HttpOpenRequestA
         Calculate size from the right argument

-- 
Uwe Bonnes                bon at elektron.ikp.physik.tu-darmstadt.de

Institut fuer Kernphysik  Schlossgartenstrasse 9  64289 Darmstadt
--------- Tel. 06151 162516 -------- Fax. 06151 164321 ----------
Index: wine/dlls/wininet/http.c
===================================================================
RCS file: /home/wine/wine/dlls/wininet/http.c,v
retrieving revision 1.34
diff -u -w -r1.34 http.c
--- wine/dlls/wininet/http.c	14 Apr 2003 21:32:36 -0000	1.34
+++ wine/dlls/wininet/http.c	16 May 2003 08:20:54 -0000
@@ -399,7 +399,7 @@
         InternetCrackUrlA(proxy, 0, 0, &UrlComponents);
         if (strlen(UrlComponents.lpszHostName)) {
 			 /* for constant 13 see above */
-             char* url = HeapAlloc(GetProcessHeap(), 0, strlen(lpwhr->lpszHostName) + strlen(lpwhr->lpszPath) + 13);
+             char* url = HeapAlloc(GetProcessHeap(), 0, strlen(lpwhs->lpszServerName) + strlen(lpwhr->lpszPath) + 13);
 
              if(UrlComponents.nPort == INTERNET_INVALID_PORT_NUMBER)
                  UrlComponents.nPort = INTERNET_DEFAULT_HTTP_PORT;



More information about the wine-patches mailing list