Jacek Caban : urlmon: Call ReportProgress(BINDSTATUS_ACCEPTRANGES) in https handler.
Module: wine Branch: master Commit: 998b4653c9b37ff84339c84e344f9163d2ec1880 URL: http://source.winehq.org/git/wine.git/?a=commit;h=998b4653c9b37ff84339c84e34... Author: Jacek Caban <jacek(a)codeweavers.com> Date: Mon Jan 12 18:20:00 2009 +0100 urlmon: Call ReportProgress(BINDSTATUS_ACCEPTRANGES) in https handler. --- dlls/urlmon/http.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/dlls/urlmon/http.c b/dlls/urlmon/http.c index 9ca8306..2e73653 100644 --- a/dlls/urlmon/http.c +++ b/dlls/urlmon/http.c @@ -625,6 +625,9 @@ static HRESULT WINAPI HttpProtocol_Continue(IInternetProtocol *iface, PROTOCOLDA } } + if(This->https) + IInternetProtocolSink_ReportProgress(This->protocol_sink, BINDSTATUS_ACCEPTRANGES, NULL); + len = 0; if ((!HttpQueryInfoW(This->request, HTTP_QUERY_CONTENT_TYPE, content_type, &len, NULL) && GetLastError() != ERROR_INSUFFICIENT_BUFFER) ||
participants (1)
-
Alexandre Julliard