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
c69ebe3b
Commit
c69ebe3b
authored
Mar 08, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Mar 08, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcss: Fix a file handle leak in RPCSS_BecomePipeServer().
Also, RPCSS_NPConnect() returns a file handle so treat it as such by checking it against INVALID_HANDLE_VALUE and not NULL.
parent
66c37f51
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
np_server.c
programs/rpcss/np_server.c
+4
-4
No files found.
programs/rpcss/np_server.c
View file @
c69ebe3b
...
...
@@ -334,7 +334,7 @@ static VOID NPMainWorkThread(LPVOID ignored)
static
HANDLE
RPCSS_NPConnect
(
void
)
{
HANDLE
the_pipe
=
NULL
;
HANDLE
the_pipe
;
DWORD
dwmode
,
wait_result
;
HANDLE
master_mutex
=
RPCSS_GetMasterMutex
();
...
...
@@ -371,7 +371,6 @@ static HANDLE RPCSS_NPConnect(void)
if
(
GetLastError
()
!=
ERROR_PIPE_BUSY
)
{
WINE_WARN
(
"Unable to open named pipe %s (assuming unavailable).
\n
"
,
wine_dbgstr_a
(
NAME_RPCSS_NAMED_PIPE
));
the_pipe
=
NULL
;
break
;
}
...
...
@@ -390,7 +389,7 @@ static HANDLE RPCSS_NPConnect(void)
}
if
(
the_pipe
)
{
if
(
the_pipe
!=
INVALID_HANDLE_VALUE
)
{
dwmode
=
PIPE_READMODE_MESSAGE
;
/* SetNamedPipeHandleState not implemented ATM, but still seems to work somehow. */
if
(
!
SetNamedPipeHandleState
(
the_pipe
,
&
dwmode
,
NULL
,
NULL
))
...
...
@@ -468,12 +467,13 @@ BOOL RPCSS_BecomePipeServer(void)
* ready to listen on it
*/
if
((
client_handle
=
RPCSS_NPConnect
())
!=
NULL
)
{
if
((
client_handle
=
RPCSS_NPConnect
())
!=
INVALID_HANDLE_VALUE
)
{
msg
.
message_type
=
RPCSS_NP_MESSAGE_TYPEID_RANMSG
;
msg
.
message
.
ranmsg
.
timeout
=
RPCSS_GetMaxLazyTimeout
();
msg
.
vardata_payload_size
=
0
;
if
(
!
RPCSS_SendReceiveNPMsg
(
client_handle
,
&
msg
,
&
reply
))
WINE_ERR
(
"Something is amiss: RPC_SendReceive failed.
\n
"
);
CloseHandle
(
client_handle
);
rslt
=
FALSE
;
}
if
(
rslt
)
{
...
...
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