[4/4] winhttp: Strip content-type/length headers from request on a redirect.

Hans Leidekker hans at codeweavers.com
Thu Sep 11 07:20:06 CDT 2008


diff --git a/dlls/winhttp/request.c b/dlls/winhttp/request.c
index 82b27e8..594db83 100644
--- a/dlls/winhttp/request.c
+++ b/dlls/winhttp/request.c
@@ -1048,6 +1048,7 @@ static BOOL handle_redirect( request_t *request )
     connect_t *connect = request->connect;
     INTERNET_PORT port;
     WCHAR *hostname = NULL, *location = NULL;
+    int index;
 
     size = 0;
     query_headers( request, WINHTTP_QUERY_LOCATION, NULL, NULL, &size, NULL );
@@ -1115,6 +1116,10 @@ static BOOL handle_redirect( request_t *request )
         }
     }
 
+    /* remove content-type/length headers */
+    if ((index = get_header_index( request, attr_content_type, 0, TRUE )) >= 0) delete_header( request, index );
+    if ((index = get_header_index( request, attr_content_length, 0, TRUE )) >= 0 ) delete_header( request, index );
+
     /* redirects are always GET requests */
     heap_free( request->verb );
     request->verb = NULL;



More information about the wine-patches mailing list