Description
if ((nMaxPos - nMinPos) > MAXLONG) |
{
|
SetLastError(ERROR_INVALID_SCROLLBAR_RANGE);
|
return FALSE; |
}
|
CID 731535 (#1 of 1): Operands don't affect result (CONSTANT_EXPRESSION_RESULT)result_independent_of_operands: nMaxPos - nMinPos > 2147483647 is always false regardless of the values of its operands. This occurs as the logical operand of if.