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
86cc2d54
Commit
86cc2d54
authored
Jun 23, 2004
by
Mike Hearn
Committed by
Alexandre Julliard
Jun 23, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Don't ERR on a used connection being destroyed.
- Don't print an extra newline in the olerelay code.
parent
48210fc3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
tmarshal.c
dlls/oleaut32/tmarshal.c
+2
-2
rpc_binding.c
dlls/rpcrt4/rpc_binding.c
+0
-1
No files found.
dlls/oleaut32/tmarshal.c
View file @
86cc2d54
...
...
@@ -1151,7 +1151,7 @@ xCall(LPVOID retptr, int method, TMProxyImpl *tpinfo /*, args */) {
}
if
(
relaydeb
)
{
TRACE_
(
olerelay
)(
"
\n
->"
);
TRACE_
(
olerelay
)(
"
->"
);
if
(
iname
)
TRACE_
(
olerelay
)(
"%s:"
,
relaystr
(
iname
));
if
(
fname
)
...
...
@@ -1339,7 +1339,7 @@ xCall(LPVOID retptr, int method, TMProxyImpl *tpinfo /*, args */) {
xargs
+=
_argsize
(
elem
->
tdesc
.
vt
);
}
}
if
(
relaydeb
)
TRACE_
(
olerelay
)(
")
\n
\n
"
);
if
(
relaydeb
)
TRACE_
(
olerelay
)(
")
\n
"
);
HeapFree
(
GetProcessHeap
(),
0
,
buf
.
base
);
return
status
;
}
...
...
dlls/rpcrt4/rpc_binding.c
View file @
86cc2d54
...
...
@@ -120,7 +120,6 @@ RPC_STATUS RPCRT4_CreateConnection(RpcConnection** Connection, BOOL server, LPST
RPC_STATUS
RPCRT4_DestroyConnection
(
RpcConnection
*
Connection
)
{
TRACE
(
"connection: %p
\n
"
,
Connection
);
if
(
Connection
->
Used
)
ERR
(
"connection is still in use
\n
"
);
RPCRT4_CloseConnection
(
Connection
);
RPCRT4_strfree
(
Connection
->
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