Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
27b5c54f
Commit
27b5c54f
authored
May 25, 2006
by
Jacek Caban
Committed by
Alexandre Julliard
May 25, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Better pending read handling.
parent
8b69bf72
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
binding.c
dlls/urlmon/binding.c
+7
-1
No files found.
dlls/urlmon/binding.c
View file @
27b5c54f
...
...
@@ -333,6 +333,7 @@ static HRESULT WINAPI ProtocolStream_Read(IStream *iface, void *pv,
{
ProtocolStream
*
This
=
STREAM_THIS
(
iface
);
DWORD
read
=
0
,
pread
=
0
;
HRESULT
hres
;
TRACE
(
"(%p)->(%p %ld %p)
\n
"
,
This
,
pv
,
cb
,
pcbRead
);
...
...
@@ -354,9 +355,14 @@ static HRESULT WINAPI ProtocolStream_Read(IStream *iface, void *pv,
return
S_OK
;
}
IInternetProtocol_Read
(
This
->
protocol
,
(
PBYTE
)
pv
+
read
,
cb
-
read
,
&
pread
);
hres
=
IInternetProtocol_Read
(
This
->
protocol
,
(
PBYTE
)
pv
+
read
,
cb
-
read
,
&
pread
);
*
pcbRead
=
read
+
pread
;
if
(
hres
==
E_PENDING
)
return
E_PENDING
;
else
if
(
FAILED
(
hres
))
FIXME
(
"Read failed: %08lx
\n
"
,
hres
);
return
read
||
pread
?
S_OK
:
S_FALSE
;
}
...
...
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