Commit afd36857 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

winhttp: Only turn POST requests into GET requests when redirecting.

parent 644f5393
...@@ -1650,7 +1650,7 @@ static BOOL handle_redirect( request_t *request, DWORD status ) ...@@ -1650,7 +1650,7 @@ static BOOL handle_redirect( request_t *request, DWORD status )
if ((index = get_header_index( request, attr_content_type, 0, TRUE )) >= 0) delete_header( request, index ); 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 ); if ((index = get_header_index( request, attr_content_length, 0, TRUE )) >= 0 ) delete_header( request, index );
if (status != HTTP_STATUS_REDIRECT_KEEP_VERB) if (status != HTTP_STATUS_REDIRECT_KEEP_VERB && !strcmpW( request->verb, postW ))
{ {
heap_free( request->verb ); heap_free( request->verb );
request->verb = strdupW( getW ); request->verb = strdupW( getW );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment