usb: gadget: uvc: fix changing interface name via configfs
authorMichael Grzeschik <m.grzeschik@pengutronix.de>
Thu, 7 Jul 2022 11:56:12 +0000 (13:56 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 8 Jul 2022 12:58:25 +0000 (14:58 +0200)
commit3d0dc539029b09fbd125444c16b11a8ed10b9d0f
treeaa1d9621110c19a0010bb1f07acf1c85ccb2e284
parent6fb9e1d94789e8ee5a258a23bc588693f743fd6c
usb: gadget: uvc: fix changing interface name via configfs

When setting the function name, it is always truncated by one char since
snprintf is always including the null-termination in the len parameter.
We use strscpy and fix the size setting to use len + 1 instead.

Fixes: 324e4f85070f ("usb: gadget: uvc: allow changing interface name via configfs")
Signed-off-by: Michael Grzeschik <m.grzeschik@pengutronix.de>
Link: https://lore.kernel.org/r/20220707115612.2760569-1-m.grzeschik@pengutronix.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/gadget/function/uvc_configfs.c