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
a1953e4e
Commit
a1953e4e
authored
Sep 26, 2019
by
Sven Baars
Committed by
Alexandre Julliard
Sep 26, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
httpapi/tests: Initialize response_buffer to 0 (Valgrind).
Signed-off-by:
Sven Baars
<
sven.wine@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
bbd1e80d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
httpapi.c
dlls/httpapi/tests/httpapi.c
+2
-0
No files found.
dlls/httpapi/tests/httpapi.c
View file @
a1953e4e
...
...
@@ -614,6 +614,8 @@ static void test_v1_entity_body(void)
ret
=
HttpSendHttpResponse
(
queue
,
req
->
RequestId
,
0
,
(
HTTP_RESPONSE
*
)
&
response
,
NULL
,
NULL
,
NULL
,
0
,
NULL
,
NULL
);
ok
(
!
ret
,
"Got error %u.
\n
"
,
ret
);
memset
(
response_buffer
,
0
,
sizeof
(
response_buffer
));
ret
=
recv
(
s
,
response_buffer
,
sizeof
(
response_buffer
),
0
);
ok
(
ret
>
0
,
"recv() failed.
\n
"
);
if
(
winetest_debug
>
1
)
...
...
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