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
5f14eb56
Commit
5f14eb56
authored
Feb 14, 2013
by
Jacek Caban
Committed by
Alexandre Julliard
Feb 14, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Allow available_bytes to be set before protocol_continue call.
parent
79b236c2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
21 deletions
+27
-21
protocol.c
dlls/urlmon/protocol.c
+27
-21
No files found.
dlls/urlmon/protocol.c
View file @
5f14eb56
...
...
@@ -338,32 +338,38 @@ HRESULT protocol_continue(Protocol *protocol, PROTOCOLDATA *data)
protocol
->
flags
|=
FLAG_FIRST_CONTINUE_COMPLETE
;
}
if
(
data
->
pData
>=
UlongToPtr
(
BINDSTATUS_DOWNLOADINGDATA
)
&&
!
protocol
->
available_bytes
)
{
BOOL
res
;
/* InternetQueryDataAvailable may immediately fork and perform its asynchronous
* read, so clear the flag _before_ calling so it does not incorrectly get cleared
* after the status callback is called */
protocol
->
flags
&=
~
FLAG_REQUEST_COMPLETE
;
res
=
InternetQueryDataAvailable
(
protocol
->
request
,
&
protocol
->
available_bytes
,
0
,
0
);
if
(
res
)
{
if
(
!
protocol
->
available_bytes
)
{
if
(
is_start
)
{
TRACE
(
"empty file
\n
"
);
all_data_read
(
protocol
);
}
else
{
WARN
(
"unexpected end of file?
\n
"
);
report_result
(
protocol
,
INET_E_DOWNLOAD_FAILURE
);
if
(
data
->
pData
>=
UlongToPtr
(
BINDSTATUS_DOWNLOADINGDATA
))
{
if
(
!
protocol
->
available_bytes
)
{
BOOL
res
;
/* InternetQueryDataAvailable may immediately fork and perform its asynchronous
* read, so clear the flag _before_ calling so it does not incorrectly get cleared
* after the status callback is called */
protocol
->
flags
&=
~
FLAG_REQUEST_COMPLETE
;
res
=
InternetQueryDataAvailable
(
protocol
->
request
,
&
protocol
->
available_bytes
,
0
,
0
);
if
(
res
)
{
TRACE
(
"available %u bytes
\n
"
,
protocol
->
available_bytes
);
if
(
!
protocol
->
available_bytes
)
{
if
(
is_start
)
{
TRACE
(
"empty file
\n
"
);
all_data_read
(
protocol
);
}
else
{
WARN
(
"unexpected end of file?
\n
"
);
report_result
(
protocol
,
INET_E_DOWNLOAD_FAILURE
);
}
return
S_OK
;
}
}
else
if
(
GetLastError
()
!=
ERROR_IO_PENDING
)
{
protocol
->
flags
|=
FLAG_REQUEST_COMPLETE
;
WARN
(
"InternetQueryDataAvailable failed: %d
\n
"
,
GetLastError
());
report_result
(
protocol
,
INET_E_DATA_NOT_AVAILABLE
);
return
S_OK
;
}
protocol
->
flags
|=
FLAG_REQUEST_COMPLETE
;
report_data
(
protocol
);
}
else
if
(
GetLastError
()
!=
ERROR_IO_PENDING
)
{
protocol
->
flags
|=
FLAG_REQUEST_COMPLETE
;
WARN
(
"InternetQueryDataAvailable failed: %d
\n
"
,
GetLastError
());
report_result
(
protocol
,
INET_E_DATA_NOT_AVAILABLE
);
}
report_data
(
protocol
);
}
return
S_OK
;
...
...
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