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
c9f62804
Commit
c9f62804
authored
Dec 20, 2022
by
Zebediah Figura
Committed by
Alexandre Julliard
Dec 20, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
httpapi: Allow passing NULL size to HttpReceiveRequestEntityBody().
parent
d1d37e40
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
httpapi_main.c
dlls/httpapi/httpapi_main.c
+4
-0
No files found.
dlls/httpapi/httpapi_main.c
View file @
c9f62804
...
...
@@ -278,6 +278,7 @@ ULONG WINAPI HttpReceiveRequestEntityBody(HANDLE queue, HTTP_REQUEST_ID id, ULON
.
bits
=
sizeof
(
void
*
)
*
8
,
};
ULONG
ret
=
ERROR_SUCCESS
;
ULONG
local_ret_size
;
OVERLAPPED
sync_ovl
;
TRACE
(
"queue %p, id %s, flags %#lx, buffer %p, size %#lx, ret_size %p, ovl %p.
\n
"
,
...
...
@@ -292,6 +293,9 @@ ULONG WINAPI HttpReceiveRequestEntityBody(HANDLE queue, HTTP_REQUEST_ID id, ULON
ovl
=
&
sync_ovl
;
}
if
(
!
ret_size
)
ret_size
=
&
local_ret_size
;
if
(
!
DeviceIoControl
(
queue
,
IOCTL_HTTP_RECEIVE_BODY
,
&
params
,
sizeof
(
params
),
buffer
,
size
,
ret_size
,
ovl
))
ret
=
GetLastError
();
...
...
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