Gerald Pfeifer : oleaut32: Remove variable rOk which is not really used from VarMod.
Module: wine Branch: master Commit: 5b8eccd3c6789c86df2a85e5c3a5480d5dac20ac URL: http://source.winehq.org/git/wine.git/?a=commit;h=5b8eccd3c6789c86df2a85e5c3... Author: Gerald Pfeifer <gerald(a)pfeifer.com> Date: Fri May 14 22:01:50 2010 +0200 oleaut32: Remove variable rOk which is not really used from VarMod. --- dlls/oleaut32/variant.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/dlls/oleaut32/variant.c b/dlls/oleaut32/variant.c index 450856f..3d8e528 100644 --- a/dlls/oleaut32/variant.c +++ b/dlls/oleaut32/variant.c @@ -5420,7 +5420,6 @@ end: HRESULT WINAPI VarMod(LPVARIANT left, LPVARIANT right, LPVARIANT result) { BOOL lOk = TRUE; - BOOL rOk = TRUE; HRESULT rc = E_FAIL; int resT = 0; VARIANT lv,rv; @@ -5491,7 +5490,6 @@ HRESULT WINAPI VarMod(LPVARIANT left, LPVARIANT right, LPVARIANT result) } - rOk = TRUE; switch (V_VT(right) & VT_TYPEMASK) { case VT_BOOL : case VT_I1 :
participants (1)
-
Alexandre Julliard