ole32: Fix return type.
This commit is contained in:
parent
f02c0ae656
commit
e9533ca85a
|
@ -7910,9 +7910,9 @@ HRESULT SmallBlockChainStream_WriteAt(
|
||||||
/*
|
/*
|
||||||
* Step to the next big block.
|
* Step to the next big block.
|
||||||
*/
|
*/
|
||||||
if(FAILED(SmallBlockChainStream_GetNextBlockInChain(This, blockIndex,
|
res = SmallBlockChainStream_GetNextBlockInChain(This, blockIndex, &blockIndex);
|
||||||
&blockIndex)))
|
if (FAILED(res))
|
||||||
return FALSE;
|
return res;
|
||||||
bufferWalker += bytesWrittenToBigBlockFile;
|
bufferWalker += bytesWrittenToBigBlockFile;
|
||||||
size -= bytesWrittenToBigBlockFile;
|
size -= bytesWrittenToBigBlockFile;
|
||||||
*bytesWritten += bytesWrittenToBigBlockFile;
|
*bytesWritten += bytesWrittenToBigBlockFile;
|
||||||
|
|
Loading…
Reference in New Issue