Commit 32a188e8 authored by Alexandre Julliard's avatar Alexandre Julliard

msxml3: Fix an uninitialized variable.

parent aaa16427
......@@ -347,11 +347,11 @@ static inline HRESULT report_data(BindStatusCallback *This)
ULARGE_INTEGER size;
HRESULT hres;
off.QuadPart = 0;
hres = IStream_Seek(This->stream, off, STREAM_SEEK_CUR, &size);
if(FAILED(hres))
return hres;
off.QuadPart = 0;
hres = IStream_Seek(This->stream, off, STREAM_SEEK_SET, NULL);
if(FAILED(hres))
return hres;
......
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