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
6a11aba5
Commit
6a11aba5
authored
Jun 02, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
Jun 03, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Skip over the right-hand-side data for the protocol floor so
that we can parse the towers received from native rpcrt4.
parent
da441263
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
rpc_transport.c
dlls/rpcrt4/rpc_transport.c
+3
-1
No files found.
dlls/rpcrt4/rpc_transport.c
View file @
6a11aba5
...
...
@@ -864,10 +864,12 @@ RPC_STATUS RpcTransport_ParseTopOfTower(const unsigned char *tower_data,
if
((
protocol_floor
->
count_lhs
!=
sizeof
(
protocol_floor
->
protid
))
||
(
protocol_floor
->
count_rhs
>
tower_size
))
return
EPT_S_NOT_REGISTERED
;
tower_data
+=
protocol_floor
->
count_rhs
;
tower_size
-=
protocol_floor
->
count_rhs
;
floor4
=
(
twr_empty_floor_t
*
)
tower_data
;
if
((
tower_size
<
sizeof
(
*
floor4
))
||
(
floor4
->
count_lhs
!=
sizeof
(
protocol_floor
->
protid
)))
(
floor4
->
count_lhs
!=
sizeof
(
floor4
->
protid
)))
return
EPT_S_NOT_REGISTERED
;
for
(
i
=
0
;
i
<
MAX_PROTSEQ
;
i
++
)
...
...
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