1
0
Fork 0

watchdog: w83977f_wdt: underflow in wdt_set_timeout()

"t" is controlled by the user.  If "t" is a very large integer then it
could lead to a negative "tmrval".  We cap the upper bound of "tmrval"
but, in the current code, we allow negatives.  This is a bug and it
causes a static checker warning.  Let's make "tmrval" unsigned to avoid
this problem.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
steinar/wifi_calib_4_9_kernel
Dan Carpenter 2015-11-06 12:56:31 +03:00 committed by Wim Van Sebroeck
parent 4c30737ce1
commit 62ed853c7d
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ static int wdt_keepalive(void)
static int wdt_set_timeout(int t)
{
int tmrval;
unsigned int tmrval;
/*
* Convert seconds to watchdog counter time units, rounding up.