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