winhttp: Also trace the buffer pointer in WinHttpSendRequest.

Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Hans Leidekker 2019-08-02 11:01:35 +02:00 committed by Alexandre Julliard
parent e38b46e7f7
commit 83aec88a96
1 changed files with 2 additions and 2 deletions

View File

@ -2278,8 +2278,8 @@ BOOL WINAPI WinHttpSendRequest( HINTERNET hrequest, LPCWSTR headers, DWORD heade
BOOL ret;
struct request *request;
TRACE("%p, %s, %u, %u, %u, %lx\n", hrequest, debugstr_wn(headers, headers_len), headers_len, optional_len,
total_len, context);
TRACE("%p, %s, %u, %p, %u, %u, %lx\n", hrequest, debugstr_wn(headers, headers_len), headers_len, optional,
optional_len, total_len, context);
if (!(request = (struct request *)grab_object( hrequest )))
{