urlmon: Change some gotos to return.

This commit is contained in:
Jacek Caban 2007-07-26 00:13:44 +02:00 committed by Alexandre Julliard
parent b8880e1640
commit 262db80776
1 changed files with 4 additions and 4 deletions

View File

@ -558,22 +558,22 @@ static HRESULT WINAPI HttpProtocol_Continue(IInternetProtocol *iface, PROTOCOLDA
if (!pProtocolData)
{
WARN("Expected pProtocolData to be non-NULL\n");
goto done;
return S_OK;
}
else if (!This->request)
{
WARN("Expected request to be non-NULL\n");
goto done;
return S_OK;
}
else if (!This->http_negotiate)
{
WARN("Expected IHttpNegotiate pointer to be non-NULL\n");
goto done;
return S_OK;
}
else if (!This->protocol_sink)
{
WARN("Expected IInternetProtocolSink pointer to be non-NULL\n");
goto done;
return S_OK;
}
if (pProtocolData->pData == (LPVOID)BINDSTATUS_DOWNLOADINGDATA)