Module: wine Branch: master Commit: 418c1d32bbc14933492220eac321a665091178b9 URL: http://source.winehq.org/git/wine.git/?a=commit;h=418c1d32bbc14933492220eac3...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Tue Nov 14 08:32:29 2017 +0300
msxml3/httpreq: Return S_OK from setTimeouts().
Signed-off-by: Nikolay Sivov nsivov@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/msxml3/httprequest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/msxml3/httprequest.c b/dlls/msxml3/httprequest.c index 72234ee..e3b521c 100644 --- a/dlls/msxml3/httprequest.c +++ b/dlls/msxml3/httprequest.c @@ -1978,7 +1978,7 @@ static HRESULT WINAPI ServerXMLHTTPRequest_setTimeouts(IServerXMLHTTPRequest *if { serverhttp *This = impl_from_IServerXMLHTTPRequest( iface ); FIXME("(%p)->(%d %d %d %d): stub\n", This, resolveTimeout, connectTimeout, sendTimeout, receiveTimeout); - return E_NOTIMPL; + return S_OK; }
static HRESULT WINAPI ServerXMLHTTPRequest_waitForResponse(IServerXMLHTTPRequest *iface, VARIANT timeout, VARIANT_BOOL *isSuccessful)