mirror of https://gitee.com/openkylin/linux.git
USB: cyberjack: fix buggy integer overflow test
"old_rdtodo" and "size" are short type. They are type promoted to int and the condition is never true. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5a3e2055c5
commit
5287bf726f
|
@ -279,7 +279,7 @@ static void cyberjack_read_int_callback(struct urb *urb)
|
|||
|
||||
old_rdtodo = priv->rdtodo;
|
||||
|
||||
if (old_rdtodo + size < old_rdtodo) {
|
||||
if (old_rdtodo > SHRT_MAX - size) {
|
||||
dev_dbg(dev, "To many bulk_in urbs to do.\n");
|
||||
spin_unlock(&priv->lock);
|
||||
goto resubmit;
|
||||
|
|
Loading…
Reference in New Issue