USB: cdc-acm: fix invalid user-pointer check
Drop invalid user-pointer check from TIOCGSERIAL handler. 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> Acked-by: Oliver Neukum <oneukum@suse.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
11f107f708
commit
04cbf3832b
@@ -877,9 +877,6 @@ static int get_serial_info(struct acm *acm, struct serial_struct __user *info)
|
|||||||
{
|
{
|
||||||
struct serial_struct tmp;
|
struct serial_struct tmp;
|
||||||
|
|
||||||
if (!info)
|
|
||||||
return -EINVAL;
|
|
||||||
|
|
||||||
memset(&tmp, 0, sizeof(tmp));
|
memset(&tmp, 0, sizeof(tmp));
|
||||||
tmp.flags = ASYNC_LOW_LATENCY;
|
tmp.flags = ASYNC_LOW_LATENCY;
|
||||||
tmp.xmit_fifo_size = acm->writesize;
|
tmp.xmit_fifo_size = acm->writesize;
|
||||||
|
|||||||
Reference in New Issue
Block a user