Maarten Lankhorst : quartz: Fix wrong assignment of variable in parser.

Alexandre Julliard julliard at winehq.org
Wed Jul 16 13:32:58 CDT 2008


Module: wine
Branch: master
Commit: 5299795a8dd55c81e40208eb9a57e5cb64e3732e
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=5299795a8dd55c81e40208eb9a57e5cb64e3732e

Author: Maarten Lankhorst <m.b.lankhorst at gmail.com>
Date:   Mon Jul 14 11:49:08 2008 -0700

quartz: Fix wrong assignment of variable in parser.

---

 dlls/quartz/parser.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/quartz/parser.c b/dlls/quartz/parser.c
index 91d1ce9..7f25300 100644
--- a/dlls/quartz/parser.c
+++ b/dlls/quartz/parser.c
@@ -317,7 +317,7 @@ HRESULT WINAPI Parser_Run(IBaseFilter * iface, REFERENCE_TIME tStart)
                 hr_any = hr;
         }
 
-        hr_any = hr;
+        hr = hr_any;
         if (SUCCEEDED(hr))
         {
             LeaveCriticalSection(&This->csFilter);




More information about the wine-cvs mailing list