Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
9e85bf3f
Commit
9e85bf3f
authored
Nov 20, 2003
by
Gregory M. Turner
Committed by
Alexandre Julliard
Nov 20, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- 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.
parent
032bdc9f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
rpc_server.c
dlls/rpcrt4/rpc_server.c
+3
-2
No files found.
dlls/rpcrt4/rpc_server.c
View file @
9e85bf3f
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment