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
9bcb9c16
Commit
9bcb9c16
authored
Jul 23, 2007
by
Misha Koshelev
Committed by
Alexandre Julliard
Jul 24, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Fix timing issue with FLAG_REQUEST_COMPLETE and InternetQueryDataAvailable in HttpProtocol.
parent
827644ad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
http.c
dlls/urlmon/http.c
+7
-1
No files found.
dlls/urlmon/http.c
View file @
9bcb9c16
...
...
@@ -725,11 +725,14 @@ static HRESULT WINAPI HttpProtocol_Read(IInternetProtocol *iface, void *pv,
{
if
(
This
->
available_bytes
==
0
)
{
/* 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 */
This
->
flags
&=
~
FLAG_REQUEST_COMPLETE
;
if
(
!
InternetQueryDataAvailable
(
This
->
request
,
&
This
->
available_bytes
,
0
,
0
))
{
if
(
GetLastError
()
==
ERROR_IO_PENDING
)
{
This
->
flags
&=
~
FLAG_REQUEST_COMPLETE
;
hres
=
E_PENDING
;
}
else
...
...
@@ -778,6 +781,9 @@ done:
if
(
pcbRead
)
*
pcbRead
=
read
;
if
(
hres
!=
E_PENDING
)
This
->
flags
|=
FLAG_REQUEST_COMPLETE
;
return
hres
;
}
...
...
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