]> git.baikalelectronics.ru Git - kernel.git/commit
usb: return correct errno code when krealloc fails
authorPan Bian <bianpan2016@163.com>
Tue, 29 Nov 2016 12:50:30 +0000 (20:50 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 29 Nov 2016 16:36:43 +0000 (17:36 +0100)
commit151e403ac1e1703a1b9c98d910ed653bbb091622
tree9e8853630e87d37a0bf1ed824647824200aca8c9
parentcba8e717be220df1b7683e0aedcedfefe1beeef6
usb: return correct errno code when krealloc fails

In function wusb_dev_sec_add(), variable result takes the return value.
Its value should be negative on failures. When function krealloc() is
called, an earlier check of variable result guarantees that the value of
result must not be less than "sizeof(*secd)", and result is not
reassigned when krealloc() returns a NULL pointer. As a result, a
positive value may be returned, which makes it impossible for the caller
of wusb_dev_sec_add() to detect the error. This patch fixes the bug by
assigning -ENOMEM to result when krealloc() returns NULL.

Signed-off-by: Pan Bian <bianpan2016@163.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/wusbcore/security.c