msxml3: Fix an uninitialized variable.

This commit is contained in:
Alexandre Julliard 2012-07-27 13:46:10 +02:00
parent aaa164272d
commit 32a188e862
1 changed files with 1 additions and 1 deletions

View File

@ -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;