[PATCH 1/4] winhttp: Also trace the buffer pointer in WinHttpSendRequest.
Signed-off-by: Hans Leidekker <hans(a)codeweavers.com> --- dlls/winhttp/request.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/winhttp/request.c b/dlls/winhttp/request.c index d3d9f572f2..25f7950f2f 100644 --- a/dlls/winhttp/request.c +++ b/dlls/winhttp/request.c @@ -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 ))) { -- 2.20.1
participants (1)
-
Hans Leidekker