usbip:usbip_common.c: check return value of sscanf
Added code to check return value of sscanf. Signed-off-by: John de la Garza <john@jjdev.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d2b7f4c429
commit
bf988c16a3
|
@ -55,7 +55,8 @@ static ssize_t usbip_debug_store(struct device *dev,
|
|||
struct device_attribute *attr, const char *buf,
|
||||
size_t count)
|
||||
{
|
||||
sscanf(buf, "%lx", &usbip_debug_flag);
|
||||
if (sscanf(buf, "%lx", &usbip_debug_flag) != 1)
|
||||
return -EINVAL;
|
||||
return count;
|
||||
}
|
||||
DEVICE_ATTR_RW(usbip_debug);
|
||||
|
|
Loading…
Reference in New Issue