Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fd601f38 authored by Rustam Kovhaev's avatar Rustam Kovhaev Committed by Greg Kroah-Hartman
Browse files

usb: hso: check for return value in hso_serial_common_create()



[ Upstream commit e911e99a0770f760377c263bc7bac1b1593c6147 ]

in case of an error tty_register_device_attr() returns ERR_PTR(),
add IS_ERR() check

Reported-and-tested-by: default avatar <syzbot+67b2bd0e34f952d0321e@syzkaller.appspotmail.com>
Link: https://syzkaller.appspot.com/bug?extid=67b2bd0e34f952d0321e


Signed-off-by: default avatarRustam Kovhaev <rkovhaev@gmail.com>
Reviewed-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 871b5a5a
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -2260,12 +2260,14 @@ static int hso_serial_common_create(struct hso_serial *serial, int num_urbs,

	minor = get_free_serial_index();
	if (minor < 0)
		goto exit;
		goto exit2;

	/* register our minor number */
	serial->parent->dev = tty_port_register_device_attr(&serial->port,
			tty_drv, minor, &serial->parent->interface->dev,
			serial->parent, hso_serial_dev_groups);
	if (IS_ERR(serial->parent->dev))
		goto exit2;

	/* fill in specific data for later use */
	serial->minor = minor;
@@ -2310,6 +2312,7 @@ static int hso_serial_common_create(struct hso_serial *serial, int num_urbs,
	return 0;
exit:
	hso_serial_tty_unregister(serial);
exit2:
	hso_serial_common_free(serial);
	return -1;
}