Commit e9533ca8 authored by Andrew Eikum's avatar Andrew Eikum Committed by Alexandre Julliard

ole32: Fix return type.

parent f02c0ae6
......@@ -7910,9 +7910,9 @@ HRESULT SmallBlockChainStream_WriteAt(
/*
* Step to the next big block.
*/
if(FAILED(SmallBlockChainStream_GetNextBlockInChain(This, blockIndex,
&blockIndex)))
return FALSE;
res = SmallBlockChainStream_GetNextBlockInChain(This, blockIndex, &blockIndex);
if (FAILED(res))
return res;
bufferWalker += bytesWrittenToBigBlockFile;
size -= bytesWrittenToBigBlockFile;
*bytesWritten += bytesWrittenToBigBlockFile;
......
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