From 3de7348f72e28b2744032b6eb83795163ee386ed Mon Sep 17 00:00:00 2001 From: Jan-Peter Nilsson Date: Sat, 18 Feb 2012 10:23:47 +0100 Subject: [PATCH] winhttp: Set the context on the request handle earlier. --- dlls/winhttp/request.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/winhttp/request.c b/dlls/winhttp/request.c index a3a92ab57bb..040f79bec2d 100644 --- a/dlls/winhttp/request.c +++ b/dlls/winhttp/request.c @@ -1085,6 +1085,8 @@ static BOOL send_request( request_t *request, LPCWSTR headers, DWORD headers_len return FALSE; } + if (context) request->hdr.context = context; + if (!(ret = open_connection( request ))) goto end; if (!(req = build_request_string( request ))) goto end; @@ -1092,7 +1094,6 @@ static BOOL send_request( request_t *request, LPCWSTR headers, DWORD headers_len TRACE("full request: %s\n", debugstr_a(req_ascii)); len = strlen(req_ascii); - if (context) request->hdr.context = context; send_callback( &request->hdr, WINHTTP_CALLBACK_STATUS_SENDING_REQUEST, NULL, 0 ); ret = netconn_send( &request->netconn, req_ascii, len, 0, &bytes_sent );