linux/drivers/media/platform/davinci
Wenwen Wang a26ac6c1be media: isif: fix a NULL pointer dereference bug
In isif_probe(), there is a while loop to get the ISIF base address and
linearization table0 and table1 address. In the loop body, the function
platform_get_resource() is called to get the resource. If
platform_get_resource() returns NULL, the loop is terminated and the
execution goes to 'fail_nobase_res'. Suppose the loop is terminated at the
first iteration because platform_get_resource() returns NULL and the
execution goes to 'fail_nobase_res'. Given that there is another while loop
at 'fail_nobase_res' and i equals to 0, one iteration of the second while
loop will be executed. However, the second while loop does not check the
return value of platform_get_resource(). This can cause a NULL pointer
dereference bug if the return value is a NULL pointer.

This patch avoids the above issue by adding a check in the second while
loop after the call to platform_get_resource().

Signed-off-by: Wenwen Wang <wang6495@umn.edu>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
2018-10-09 08:02:52 -04:00
..
ccdc_hw_device.h
dm355_ccdc.c
dm355_ccdc_regs.h
dm644x_ccdc.c
dm644x_ccdc_regs.h
isif.c media: isif: fix a NULL pointer dereference bug 2018-10-09 08:02:52 -04:00
isif_regs.h
Kconfig
Makefile
vpbe.c
vpbe_display.c media: davinci: Fix implicit enum conversion warning 2018-09-24 09:43:13 -04:00
vpbe_osd.c media: headers: fix linux/mod_devicetable.h inclusions 2018-08-02 18:30:54 -04:00
vpbe_osd_regs.h
vpbe_venc.c media: replace strcpy() by strscpy() 2018-09-11 13:32:17 -04:00
vpbe_venc_regs.h
vpfe_capture.c media: use strscpy() instead of strlcpy() 2018-09-11 13:32:17 -04:00
vpif.c
vpif.h
vpif_capture.c media: v4l: fwnode: Initialise the V4L2 fwnode endpoints to zero 2018-10-04 16:21:02 -04:00
vpif_capture.h
vpif_display.c media: platform: Switch to v4l2_async_notifier_add_subdev 2018-10-04 15:55:38 -04:00
vpif_display.h
vpss.c