Commit c5b2dc68 authored by Dan Carpenter's avatar Dan Carpenter Committed by Felipe Balbi

usb: gadget: uvc: memory leak in uvcg_frame_make()

We need to add a kfree(h) on an error path.
Acked-by: default avatarAndrzej Pietrasiewicz <andrzej.p@samsung.com>
Acked-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent ceeb010b
......@@ -1300,6 +1300,7 @@ static struct config_item *uvcg_frame_make(struct config_group *group,
h->fmt_type = UVCG_MJPEG;
} else {
mutex_unlock(&opts->lock);
kfree(h);
return ERR_PTR(-EINVAL);
}
++fmt->num_frames;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment