Commit 0451643e authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

winhttp: Redirects are always GET requests.

parent 28ae1d4f
......@@ -1118,6 +1118,9 @@ static BOOL handle_redirect( request_t *request )
}
}
/* redirects are always GET requests */
heap_free( request->verb );
request->verb = NULL;
ret = TRUE;
end:
......
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