urlmon/tests: Visually separate two if statements (PVS-Studio).
This commit is contained in:
parent
288f1868b7
commit
0ef0477f9e
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue