From 9e85bf3f87df5af6ca8cde3ecc4fd59339495343 Mon Sep 17 00:00:00 2001 From: "Gregory M. Turner" Date: Thu, 20 Nov 2003 23:39:18 +0000 Subject: [PATCH] - Trace the argument to RPCRT4_server_thread. - ^null implies two indirections, we have one. - Ove's intent doesn't matter, the current implementation is right. --- dlls/rpcrt4/rpc_server.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dlls/rpcrt4/rpc_server.c b/dlls/rpcrt4/rpc_server.c index e9fe90225bc..3fd1db041b4 100644 --- a/dlls/rpcrt4/rpc_server.c +++ b/dlls/rpcrt4/rpc_server.c @@ -375,6 +375,8 @@ static DWORD CALLBACK RPCRT4_server_thread(LPVOID the_arg) RpcConnection* conn; RpcConnection* cconn; + TRACE("(the_arg == ^%p)\n", the_arg); + for (;;) { EnterCriticalSection(&server_cs); /* open and count connections */ @@ -516,7 +518,7 @@ RPC_STATUS WINAPI RpcServerInqBindings( RPC_BINDING_VECTOR** BindingVector ) if (BindingVector) TRACE("(*BindingVector == ^%p)\n", *BindingVector); else - ERR("(BindingVector == ^null!!?)\n"); + ERR("(BindingVector == NULL!!?)\n"); EnterCriticalSection(&server_cs); /* count connections */ @@ -625,7 +627,6 @@ RPC_STATUS WINAPI RpcServerUseProtseqEpExW( LPWSTR Protseq, UINT MaxCalls, LPWST ps = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(RpcServerProtseq)); ps->MaxCalls = MaxCalls; - /* FIXME: Did Ove have these next two as RPCRT4_strdupW for a reason? */ ps->Protseq = RPCRT4_strdupWtoA(Protseq); ps->Endpoint = RPCRT4_strdupWtoA(Endpoint);