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
d9bf3b5c
Commit
d9bf3b5c
authored
Jun 09, 2008
by
Huw Davies
Committed by
Alexandre Julliard
Jun 21, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
inetcomm: Fully initialize start and length.
Should fix Valgrind warnings 'Conditional jump or move depends on uninitialised value(s)' in inetcomm tests.
parent
025457e0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
mimeole.c
dlls/inetcomm/mimeole.c
+2
-2
No files found.
dlls/inetcomm/mimeole.c
View file @
d9bf3b5c
...
@@ -1629,8 +1629,8 @@ static body_t *create_sub_body(MimeMessage *msg, IStream *pStm, BODYOFFSETS *off
...
@@ -1629,8 +1629,8 @@ static body_t *create_sub_body(MimeMessage *msg, IStream *pStm, BODYOFFSETS *off
IStream
*
sub_stream
;
IStream
*
sub_stream
;
ULARGE_INTEGER
start
,
length
;
ULARGE_INTEGER
start
,
length
;
start
.
u
.
Low
Part
=
cur
->
offsets
.
cbHeaderStart
;
start
.
Quad
Part
=
cur
->
offsets
.
cbHeaderStart
;
length
.
u
.
Low
Part
=
cur
->
offsets
.
cbBodyEnd
-
cur
->
offsets
.
cbHeaderStart
;
length
.
Quad
Part
=
cur
->
offsets
.
cbBodyEnd
-
cur
->
offsets
.
cbHeaderStart
;
create_sub_stream
(
pStm
,
start
,
length
,
&
sub_stream
);
create_sub_stream
(
pStm
,
start
,
length
,
&
sub_stream
);
sub_body
=
create_sub_body
(
msg
,
sub_stream
,
&
cur
->
offsets
,
body
);
sub_body
=
create_sub_body
(
msg
,
sub_stream
,
&
cur
->
offsets
,
body
);
IStream_Release
(
sub_stream
);
IStream_Release
(
sub_stream
);
...
...
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