Commit 7bb743cc authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

oleaut32: Remove dead switch case VT_I1 entry for VarSub (Coverity).

parent f542a0c1
......@@ -3947,9 +3947,6 @@ HRESULT WINAPI VarSub(LPVARIANT left, LPVARIANT right, LPVARIANT result)
case VT_I2:
V_I2(result) = V_I2(&lv) - V_I2(&rv);
break;
case VT_I1:
V_I1(result) = V_I1(&lv) - V_I1(&rv);
break;
case VT_UI1:
V_UI1(result) = V_UI2(&lv) - V_UI1(&rv);
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment