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
49992c3a
Commit
49992c3a
authored
Feb 25, 2013
by
Andrew Talbot
Committed by
Alexandre Julliard
Feb 26, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Avoid signed-unsigned integer comparisons.
parent
1a190a9d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
rpc_transport.c
dlls/rpcrt4/rpc_transport.c
+4
-4
No files found.
dlls/rpcrt4/rpc_transport.c
View file @
49992c3a
...
...
@@ -3117,7 +3117,7 @@ RPC_STATUS WINAPI RpcProtseqVectorFreeA(RPC_PROTSEQ_VECTORA **protseqs)
if
(
*
protseqs
)
{
int
i
;
unsigned
int
i
;
for
(
i
=
0
;
i
<
(
*
protseqs
)
->
Count
;
i
++
)
HeapFree
(
GetProcessHeap
(),
0
,
(
*
protseqs
)
->
Protseq
[
i
]);
HeapFree
(
GetProcessHeap
(),
0
,
*
protseqs
);
...
...
@@ -3135,7 +3135,7 @@ RPC_STATUS WINAPI RpcProtseqVectorFreeW(RPC_PROTSEQ_VECTORW **protseqs)
if
(
*
protseqs
)
{
int
i
;
unsigned
int
i
;
for
(
i
=
0
;
i
<
(
*
protseqs
)
->
Count
;
i
++
)
HeapFree
(
GetProcessHeap
(),
0
,
(
*
protseqs
)
->
Protseq
[
i
]);
HeapFree
(
GetProcessHeap
(),
0
,
*
protseqs
);
...
...
@@ -3150,7 +3150,7 @@ RPC_STATUS WINAPI RpcProtseqVectorFreeW(RPC_PROTSEQ_VECTORW **protseqs)
RPC_STATUS
WINAPI
RpcNetworkInqProtseqsW
(
RPC_PROTSEQ_VECTORW
**
protseqs
)
{
RPC_PROTSEQ_VECTORW
*
pvector
;
int
i
=
0
;
unsigned
int
i
;
RPC_STATUS
status
=
RPC_S_OUT_OF_MEMORY
;
TRACE
(
"(%p)
\n
"
,
protseqs
);
...
...
@@ -3183,7 +3183,7 @@ end:
RPC_STATUS
WINAPI
RpcNetworkInqProtseqsA
(
RPC_PROTSEQ_VECTORA
**
protseqs
)
{
RPC_PROTSEQ_VECTORA
*
pvector
;
int
i
=
0
;
unsigned
int
i
;
RPC_STATUS
status
=
RPC_S_OUT_OF_MEMORY
;
TRACE
(
"(%p)
\n
"
,
protseqs
);
...
...
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