mirror of https://gitee.com/openkylin/linux.git
w1: silence an uninitialized variable warning
If kstrtoint() returns -ERANGE then "tmp" is uninitialized. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Acked-by: Evgeniy Polaykov <zbr@ioremap.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
dd69a18ae7
commit
b9c11a2333
|
@ -335,7 +335,7 @@ static ssize_t w1_master_attribute_store_max_slave_count(struct device *dev,
|
||||||
int tmp;
|
int tmp;
|
||||||
struct w1_master *md = dev_to_w1_master(dev);
|
struct w1_master *md = dev_to_w1_master(dev);
|
||||||
|
|
||||||
if (kstrtoint(buf, 0, &tmp) == -EINVAL || tmp < 1)
|
if (kstrtoint(buf, 0, &tmp) || tmp < 1)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
mutex_lock(&md->mutex);
|
mutex_lock(&md->mutex);
|
||||||
|
|
Loading…
Reference in New Issue