diff options
author | Johan Hovold <johan@kernel.org> | 2016-11-08 13:26:50 +0100 |
---|---|---|
committer | Johan Hovold <johan@kernel.org> | 2016-11-11 17:54:04 +0100 |
commit | 2fbd69c4e33360383907cf0abb245440e62a6f37 (patch) | |
tree | 71778f45768c74d97deffbcaac7be37d7f083faf /drivers/usb/serial/quatech2.c | |
parent | USB: serial: ch341: add debug output for chip version (diff) | |
download | linux-2fbd69c4e33360383907cf0abb245440e62a6f37.tar.xz linux-2fbd69c4e33360383907cf0abb245440e62a6f37.zip |
USB: serial: fix invalid user-pointer checks
Drop invalid user-pointer checks from ioctl handlers.
A NULL-pointer can be valid in user space and copy_to_user() takes care
of sanity checking.
Signed-off-by: Johan Hovold <johan@kernel.org>
Diffstat (limited to 'drivers/usb/serial/quatech2.c')
-rw-r--r-- | drivers/usb/serial/quatech2.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/usb/serial/quatech2.c b/drivers/usb/serial/quatech2.c index 85acb50a7ee2..659cb8606bd9 100644 --- a/drivers/usb/serial/quatech2.c +++ b/drivers/usb/serial/quatech2.c @@ -463,9 +463,6 @@ static int get_serial_info(struct usb_serial_port *port, { struct serial_struct tmp; - if (!retinfo) - return -EFAULT; - memset(&tmp, 0, sizeof(tmp)); tmp.line = port->minor; tmp.port = 0; |