Skip to content
Snippets Groups Projects
Commit 24dc3471 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard
Browse files

ole32: Silence a compiler warning about unused variable in StgStreamImpl_Write().

parent fc4cd637
No related branches found
No related tags found
No related merge requests found
......@@ -440,9 +440,12 @@ static HRESULT WINAPI StgStreamImpl_Write(
pcbWritten);
}
else
{
/* this should never happen because the IStream_SetSize call above will
* make sure a big or small block chain is created */
assert(FALSE);
res = 0;
}
/*
* Advance the position pointer for the number of positions written.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment