mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-28 23:23:55 +08:00
media: davinci: vpif_capture: fix potential NULL deref
Fix potential NULL pointer dereference in the error path of memory allocation failure. Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Kevin Hilman <khilman@baylibre.com> Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
e5c50e130d
commit
5a634ae0b1
@ -1593,9 +1593,11 @@ vpif_capture_get_pdata(struct platform_device *pdev)
|
||||
}
|
||||
|
||||
done:
|
||||
pdata->asd_sizes[0] = i;
|
||||
pdata->subdev_count = i;
|
||||
pdata->card_name = "DA850/OMAP-L138 Video Capture";
|
||||
if (pdata) {
|
||||
pdata->asd_sizes[0] = i;
|
||||
pdata->subdev_count = i;
|
||||
pdata->card_name = "DA850/OMAP-L138 Video Capture";
|
||||
}
|
||||
|
||||
return pdata;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user