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
c3e724d0
Commit
c3e724d0
authored
Jan 31, 2003
by
Ove Kaaven
Committed by
Alexandre Julliard
Jan 31, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a bug in CompleteBindingA/W.
parent
5d121fbe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
rpc_binding.c
dlls/rpcrt4/rpc_binding.c
+6
-3
No files found.
dlls/rpcrt4/rpc_binding.c
View file @
c3e724d0
...
...
@@ -137,35 +137,38 @@ RPC_STATUS RPCRT4_CompleteBindingA(RpcBinding* Binding, LPSTR NetworkAddr, LPST
RPCRT4_strfree
(
Binding
->
NetworkAddr
);
Binding
->
NetworkAddr
=
RPCRT4_strdupA
(
NetworkAddr
);
RPCRT4_strfree
(
Binding
->
Endpoint
);
if
(
Binding
->
Endpoint
)
{
if
(
Endpoint
)
{
Binding
->
Endpoint
=
RPCRT4_strdupA
(
Endpoint
);
}
else
{
Binding
->
Endpoint
=
RPCRT4_strdupA
(
""
);
}
if
(
!
Binding
->
Endpoint
)
ERR
(
"out of memory?
\n
"
);
return
RPC_S_OK
;
}
RPC_STATUS
RPCRT4_CompleteBindingW
(
RpcBinding
*
Binding
,
LPWSTR
NetworkAddr
,
LPWSTR
Endpoint
,
LPWSTR
NetworkOptions
)
{
TRACE
(
"(RpcBinding == ^%p, NetworkAddr ==
\"
%s
\"
, EndPoint ==
\"
%s
\"
, NetworkOptions ==
\"
%s
\"
)
\n
"
,
Binding
,
debugstr_w
(
NetworkAddr
),
debugstr_w
(
Endpoint
),
debugstr_w
(
NetworkOptions
));
RPCRT4_strfree
(
Binding
->
NetworkAddr
);
Binding
->
NetworkAddr
=
RPCRT4_strdupWtoA
(
NetworkAddr
);
RPCRT4_strfree
(
Binding
->
Endpoint
);
if
(
Binding
->
Endpoint
)
{
if
(
Endpoint
)
{
Binding
->
Endpoint
=
RPCRT4_strdupWtoA
(
Endpoint
);
}
else
{
Binding
->
Endpoint
=
RPCRT4_strdupA
(
""
);
}
if
(
!
Binding
->
Endpoint
)
ERR
(
"out of memory?
\n
"
);
return
RPC_S_OK
;
}
RPC_STATUS
RPCRT4_ResolveBinding
(
RpcBinding
*
Binding
,
LPSTR
Endpoint
)
{
TRACE
(
"(RpcBinding == ^%p, EndPoint ==
\"
%s
\"\n
"
,
Binding
,
Endpoint
);
RPCRT4_strfree
(
Binding
->
Endpoint
);
Binding
->
Endpoint
=
RPCRT4_strdupA
(
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