OSDN Git Service

media: imx-mipi-csis: Check csis_fmt validity before use
authorMarek Vasut <marex@denx.de>
Thu, 16 Feb 2023 01:44:01 +0000 (02:44 +0100)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Sun, 26 Feb 2023 10:21:33 +0000 (11:21 +0100)
The find_csis_format() may return NULL in case supported format is not
found, check the return value of find_csis_format() before using the
result to avoid NULL pointer dereference.

Fixes: 11927d0fd0d0 ("media: imx-mipi-csis: Use V4L2 subdev active state")
Signed-off-by: Marek Vasut <marex@denx.de>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
drivers/media/platform/nxp/imx-mipi-csis.c

index e996335..be2768a 100644 (file)
@@ -1109,6 +1109,9 @@ static int mipi_csis_get_frame_desc(struct v4l2_subdev *sd, unsigned int pad,
        csis_fmt = find_csis_format(fmt->code);
        v4l2_subdev_unlock_state(state);
 
+       if (!csis_fmt)
+               return -EPIPE;
+
        fd->type = V4L2_MBUS_FRAME_DESC_TYPE_PARALLEL;
        fd->num_entries = 1;