Maarten Lankhorst : quartz: Fix wrong assignment of variable in parser.
Module: wine Branch: master Commit: 5299795a8dd55c81e40208eb9a57e5cb64e3732e URL: http://source.winehq.org/git/wine.git/?a=commit;h=5299795a8dd55c81e40208eb9a... Author: Maarten Lankhorst <m.b.lankhorst(a)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);
participants (1)
-
Alexandre Julliard