urlmon/tests: Visually separate two if statements (PVS-Studio).

This commit is contained in:
Michael Stefaniuc 2014-10-31 10:59:25 +01:00 committed by Alexandre Julliard
parent 288f1868b7
commit 0ef0477f9e
1 changed files with 3 additions and 1 deletions

View File

@ -1991,7 +1991,9 @@ static HRESULT WINAPI ProtocolEmul_Read(IInternetProtocolEx *iface, void *pv,
memcpy(pv, "gif87a", 6);
prot_read += *pcbRead = cb;
return S_OK;
}if(prot_state == 4) {
}
if(prot_state == 4) {
*pcbRead = 0;
return S_FALSE;
}