Commit 24dc3471 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

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

parent fc4cd637
......@@ -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.
......
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