Commit 8ec17b8e authored by Daniel Lehman's avatar Daniel Lehman Committed by Alexandre Julliard

ole32: Return error from IStream Clone.

parent 0be89601
...@@ -23,7 +23,6 @@ ...@@ -23,7 +23,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/ */
#include <assert.h>
#include <stdlib.h> #include <stdlib.h>
#include <stdarg.h> #include <stdarg.h>
#include <stdio.h> #include <stdio.h>
...@@ -604,7 +603,6 @@ static HRESULT WINAPI StgStreamImpl_Clone( ...@@ -604,7 +603,6 @@ static HRESULT WINAPI StgStreamImpl_Clone(
IStream** ppstm) /* [out] */ IStream** ppstm) /* [out] */
{ {
StgStreamImpl* This = impl_from_IStream(iface); StgStreamImpl* This = impl_from_IStream(iface);
HRESULT hres;
StgStreamImpl* new_stream; StgStreamImpl* new_stream;
LARGE_INTEGER seek_pos; LARGE_INTEGER seek_pos;
...@@ -630,11 +628,7 @@ static HRESULT WINAPI StgStreamImpl_Clone( ...@@ -630,11 +628,7 @@ static HRESULT WINAPI StgStreamImpl_Clone(
seek_pos.QuadPart = This->currentPosition.QuadPart; seek_pos.QuadPart = This->currentPosition.QuadPart;
hres = IStream_Seek(*ppstm, seek_pos, STREAM_SEEK_SET, NULL); return IStream_Seek(*ppstm, seek_pos, STREAM_SEEK_SET, NULL);
assert (SUCCEEDED(hres));
return S_OK;
} }
/* /*
......
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