Commit f925e0c0 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

itss: Return S_FALSE in IStream::Read if there is no more data to read.

parent 6ea7a445
......@@ -660,7 +660,7 @@ static HRESULT WINAPI ITSS_IStream_Read(
if( pcbRead )
*pcbRead = count;
return S_OK;
return count ? S_OK : S_FALSE;
}
static HRESULT WINAPI ITSS_IStream_Write(
......
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