oleaut32: Remove redundant comparison. Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
diff --git a/dlls/oleaut32/vartype.c b/dlls/oleaut32/vartype.c index 881fe20..eeef992 100644 --- a/dlls/oleaut32/vartype.c +++ b/dlls/oleaut32/vartype.c
@@ -5372,7 +5372,7 @@ end of the bit representation, down to the precision guaranteed by the floating point number. */ if (isDouble) { - while (exponent10 < 0 && (val->bitsnum[2] != 0 || (val->bitsnum[2] == 0 && (val->bitsnum[1] & 0xFFE00000) != 0))) { + while (exponent10 < 0 && (val->bitsnum[2] != 0 || (val->bitsnum[1] & 0xFFE00000) != 0)) { int rem10; rem10 = VARIANT_int_divbychar(val->bitsnum, 3, 10);