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
ce085ed8
Commit
ce085ed8
authored
Aug 10, 2008
by
Rob Shearman
Committed by
Alexandre Julliard
Aug 18, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Check that strings in SMB, NB and pipe floors are nul-terminated before copying the data.
parent
257bf68f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
rpc_transport.c
dlls/rpcrt4/rpc_transport.c
+6
-3
No files found.
dlls/rpcrt4/rpc_transport.c
View file @
ce085ed8
...
@@ -504,7 +504,8 @@ static RPC_STATUS rpcrt4_ncacn_np_parse_top_of_tower(const unsigned char *tower_
...
@@ -504,7 +504,8 @@ static RPC_STATUS rpcrt4_ncacn_np_parse_top_of_tower(const unsigned char *tower_
if
((
smb_floor
->
count_lhs
!=
sizeof
(
smb_floor
->
protid
))
||
if
((
smb_floor
->
count_lhs
!=
sizeof
(
smb_floor
->
protid
))
||
(
smb_floor
->
protid
!=
EPM_PROTOCOL_SMB
)
||
(
smb_floor
->
protid
!=
EPM_PROTOCOL_SMB
)
||
(
smb_floor
->
count_rhs
>
tower_size
))
(
smb_floor
->
count_rhs
>
tower_size
)
||
(
tower_data
[
smb_floor
->
count_rhs
-
1
]
!=
'\0'
))
return
EPT_S_NOT_REGISTERED
;
return
EPT_S_NOT_REGISTERED
;
if
(
endpoint
)
if
(
endpoint
)
...
@@ -527,7 +528,8 @@ static RPC_STATUS rpcrt4_ncacn_np_parse_top_of_tower(const unsigned char *tower_
...
@@ -527,7 +528,8 @@ static RPC_STATUS rpcrt4_ncacn_np_parse_top_of_tower(const unsigned char *tower_
if
((
nb_floor
->
count_lhs
!=
sizeof
(
nb_floor
->
protid
))
||
if
((
nb_floor
->
count_lhs
!=
sizeof
(
nb_floor
->
protid
))
||
(
nb_floor
->
protid
!=
EPM_PROTOCOL_NETBIOS
)
||
(
nb_floor
->
protid
!=
EPM_PROTOCOL_NETBIOS
)
||
(
nb_floor
->
count_rhs
>
tower_size
))
(
nb_floor
->
count_rhs
>
tower_size
)
||
(
tower_data
[
nb_floor
->
count_rhs
-
1
]
!=
'\0'
))
return
EPT_S_NOT_REGISTERED
;
return
EPT_S_NOT_REGISTERED
;
if
(
networkaddr
)
if
(
networkaddr
)
...
@@ -714,7 +716,8 @@ static RPC_STATUS rpcrt4_ncalrpc_parse_top_of_tower(const unsigned char *tower_d
...
@@ -714,7 +716,8 @@ static RPC_STATUS rpcrt4_ncalrpc_parse_top_of_tower(const unsigned char *tower_d
if
((
pipe_floor
->
count_lhs
!=
sizeof
(
pipe_floor
->
protid
))
||
if
((
pipe_floor
->
count_lhs
!=
sizeof
(
pipe_floor
->
protid
))
||
(
pipe_floor
->
protid
!=
EPM_PROTOCOL_PIPE
)
||
(
pipe_floor
->
protid
!=
EPM_PROTOCOL_PIPE
)
||
(
pipe_floor
->
count_rhs
>
tower_size
))
(
pipe_floor
->
count_rhs
>
tower_size
)
||
(
tower_data
[
pipe_floor
->
count_rhs
-
1
]
!=
'\0'
))
return
EPT_S_NOT_REGISTERED
;
return
EPT_S_NOT_REGISTERED
;
if
(
networkaddr
)
if
(
networkaddr
)
...
...
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