Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
bd38e2b0
Commit
bd38e2b0
authored
Apr 16, 2008
by
Marcus Meissner
Committed by
Alexandre Julliard
Apr 16, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Handle exit path where bind not allocated yet.
parent
7a5e3d3c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
rpc_binding.c
dlls/rpcrt4/rpc_binding.c
+4
-4
No files found.
dlls/rpcrt4/rpc_binding.c
View file @
bd38e2b0
...
@@ -725,8 +725,8 @@ RPC_STATUS WINAPI RpcBindingFromStringBindingA( RPC_CSTR StringBinding, RPC_BIND
...
@@ -725,8 +725,8 @@ RPC_STATUS WINAPI RpcBindingFromStringBindingA( RPC_CSTR StringBinding, RPC_BIND
if
(
ret
==
RPC_S_OK
)
if
(
ret
==
RPC_S_OK
)
ret
=
RPCRT4_CreateBindingA
(
&
bind
,
FALSE
,
(
char
*
)
Protseq
);
ret
=
RPCRT4_CreateBindingA
(
&
bind
,
FALSE
,
(
char
*
)
Protseq
);
if
(
ret
==
RPC_S_OK
)
if
(
ret
!=
RPC_S_OK
)
return
ret
;
ret
=
RPCRT4_SetBindingObject
(
bind
,
&
Uuid
);
ret
=
RPCRT4_SetBindingObject
(
bind
,
&
Uuid
);
if
(
ret
==
RPC_S_OK
)
if
(
ret
==
RPC_S_OK
)
ret
=
RPCRT4_CompleteBindingA
(
bind
,
(
char
*
)
NetworkAddr
,
(
char
*
)
Endpoint
,
(
char
*
)
Options
);
ret
=
RPCRT4_CompleteBindingA
(
bind
,
(
char
*
)
NetworkAddr
,
(
char
*
)
Endpoint
,
(
char
*
)
Options
);
...
@@ -764,8 +764,8 @@ RPC_STATUS WINAPI RpcBindingFromStringBindingW( RPC_WSTR StringBinding, RPC_BIND
...
@@ -764,8 +764,8 @@ RPC_STATUS WINAPI RpcBindingFromStringBindingW( RPC_WSTR StringBinding, RPC_BIND
if
(
ret
==
RPC_S_OK
)
if
(
ret
==
RPC_S_OK
)
ret
=
RPCRT4_CreateBindingW
(
&
bind
,
FALSE
,
Protseq
);
ret
=
RPCRT4_CreateBindingW
(
&
bind
,
FALSE
,
Protseq
);
if
(
ret
==
RPC_S_OK
)
if
(
ret
!=
RPC_S_OK
)
return
ret
;
ret
=
RPCRT4_SetBindingObject
(
bind
,
&
Uuid
);
ret
=
RPCRT4_SetBindingObject
(
bind
,
&
Uuid
);
if
(
ret
==
RPC_S_OK
)
if
(
ret
==
RPC_S_OK
)
ret
=
RPCRT4_CompleteBindingW
(
bind
,
NetworkAddr
,
Endpoint
,
Options
);
ret
=
RPCRT4_CompleteBindingW
(
bind
,
NetworkAddr
,
Endpoint
,
Options
);
...
...
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