Commit 41ed9106 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

urlmon: Remove unneeded cast.

parent dde7ca22
...@@ -221,7 +221,7 @@ static HRESULT WINAPI IStream_fnRead (IStream * iface, ...@@ -221,7 +221,7 @@ static HRESULT WINAPI IStream_fnRead (IStream * iface,
if ( !pcbRead) if ( !pcbRead)
pcbRead = &dwBytesRead; pcbRead = &dwBytesRead;
if ( ! ReadFile( This->handle, pv, cb, (LPDWORD)pcbRead, NULL ) ) if ( ! ReadFile( This->handle, pv, cb, pcbRead, NULL ) )
return S_FALSE; return S_FALSE;
if (!*pcbRead) if (!*pcbRead)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment