Commit 55409b2e authored by Misha Koshelev's avatar Misha Koshelev Committed by Alexandre Julliard

urlmon: Report total data read in this bind operation to OnDataAvailable, not…

urlmon: Report total data read in this bind operation to OnDataAvailable, not the size of the available buffer.
parent b3a660a6
......@@ -951,7 +951,7 @@ static void report_data(Binding *This, DWORD bscf, ULONG progress, ULONG progres
fill_stream_buffer(This->stream);
IBindStatusCallback_OnDataAvailable(This->callback, bscf, This->stream->buf_size,
IBindStatusCallback_OnDataAvailable(This->callback, bscf, progress,
&formatetc, &This->stgmed);
if(end_download) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment