]> www.infradead.org Git - users/jedix/linux-maple.git/commit
media: uvcvideo: Fix double free in error path
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Thu, 7 Nov 2024 23:51:30 +0000 (01:51 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Thu, 19 Dec 2024 14:44:43 +0000 (14:44 +0000)
commitc6ef3a7fa97ec823a1e1af9085cf13db9f7b3bac
treed649f1f33400799acfc6e8e6e89f739f6fdc0887
parenta9ea1a3d88b7947ce8cadb2afceee7a54872bbc5
media: uvcvideo: Fix double free in error path

If the uvc_status_init() function fails to allocate the int_urb, it will
free the dev->status pointer but doesn't reset the pointer to NULL. This
results in the kfree() call in uvc_status_cleanup() trying to
double-free the memory. Fix it by resetting the dev->status pointer to
NULL after freeing it.

Fixes: a31a4055473b ("V4L/DVB:usbvideo:don't use part of buffer for USB transfer #4")
Cc: stable@vger.kernel.org
Link: https://lore.kernel.org/r/20241107235130.31372-1-laurent.pinchart@ideasonboard.com
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed by: Ricardo Ribalda <ribalda@chromium.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/usb/uvc/uvc_status.c