Hans Leidekker : winhttp: Also trace the buffer pointer in WinHttpSendRequest.

Alexandre Julliard julliard at winehq.org
Fri Aug 2 14:26:30 CDT 2019


Module: wine
Branch: master
Commit: 83aec88a96f67c5540b93744192dcccb98b3b5e7
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=83aec88a96f67c5540b93744192dcccb98b3b5e7

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Fri Aug  2 11:01:35 2019 +0200

winhttp: Also trace the buffer pointer in WinHttpSendRequest.

Signed-off-by: Hans Leidekker <hans at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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 d3d9f57..25f7950 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 )))
     {




More information about the wine-cvs mailing list