From 32a188e8623b2e94685a20fff203d5e0f342be37 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Fri, 27 Jul 2012 13:46:10 +0200 Subject: [PATCH] msxml3: Fix an uninitialized variable. --- dlls/msxml3/xmlview.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msxml3/xmlview.c b/dlls/msxml3/xmlview.c index cd7389a0aa7..c2e6f1ebfee 100644 --- a/dlls/msxml3/xmlview.c +++ b/dlls/msxml3/xmlview.c @@ -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; -- 2.11.4.GIT