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
59b03747
Commit
59b03747
authored
Sep 23, 2013
by
Hans Leidekker
Committed by
Alexandre Julliard
Sep 23, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhttp: Don't assume that end of chunk means end of stream.
parent
bee390e1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
request.c
dlls/winhttp/request.c
+0
-0
winhttp_private.h
dlls/winhttp/winhttp_private.h
+3
-1
No files found.
dlls/winhttp/request.c
View file @
59b03747
This diff is collapsed.
Click to expand it.
dlls/winhttp/winhttp_private.h
View file @
59b03747
...
...
@@ -187,9 +187,11 @@ typedef struct
int
send_timeout
;
int
recv_timeout
;
LPWSTR
status_text
;
DWORD
content_length
;
/* total number of bytes to be read
(per chunk)
*/
DWORD
content_length
;
/* total number of bytes to be read */
DWORD
content_read
;
/* bytes read so far */
BOOL
read_chunked
;
/* are we reading in chunked mode? */
BOOL
read_chunked_eof
;
/* end of stream in chunked mode */
BOOL
read_chunked_size
;
/* chunk size remaining */
DWORD
read_pos
;
/* current read position in read_buf */
DWORD
read_size
;
/* valid data size in read_buf */
char
read_buf
[
4096
];
/* buffer for already read but not returned data */
...
...
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