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
4c36f799
Commit
4c36f799
authored
Dec 06, 2009
by
Marcus Meissner
Committed by
Alexandre Julliard
Dec 07, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Fixed array_compute_and_size_conformance on strings (Coverity).
parent
8d44d638
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ndr_marshall.c
dlls/rpcrt4/ndr_marshall.c
+2
-2
No files found.
dlls/rpcrt4/ndr_marshall.c
View file @
4c36f799
...
...
@@ -1778,7 +1778,7 @@ static inline void array_compute_and_size_conformance(
break
;
case
RPC_FC_C_CSTRING
:
case
RPC_FC_C_WSTRING
:
if
(
pFormat
[
0
]
==
RPC_FC_C_CSTRING
)
if
(
fc
==
RPC_FC_C_CSTRING
)
{
TRACE
(
"string=%s
\n
"
,
debugstr_a
((
const
char
*
)
pMemory
));
pStubMsg
->
ActualCount
=
strlen
((
const
char
*
)
pMemory
)
+
1
;
...
...
@@ -1789,7 +1789,7 @@ static inline void array_compute_and_size_conformance(
pStubMsg
->
ActualCount
=
strlenW
((
LPCWSTR
)
pMemory
)
+
1
;
}
if
(
fc
==
RPC_FC_STRING_SIZED
)
if
(
pFormat
[
1
]
==
RPC_FC_STRING_SIZED
)
pFormat
=
ComputeConformance
(
pStubMsg
,
pMemory
,
pFormat
+
2
,
0
);
else
pStubMsg
->
MaxCount
=
pStubMsg
->
ActualCount
;
...
...
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