mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
video: fbdev: pxafb: potential NULL dereference on error
If we "goto out;" then it calls display_timings_release(timings); Since "timings" is NULL, that's going to oops. Just return directly. Fixes: 420a488278e8 ('video: fbdev: pxafb: initial devicetree conversion') Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Acked-by: Robert Jarzmik <robert.jarzmik@free.fr> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
parent
53d73a0adc
commit
e0299908d6
@ -2125,7 +2125,7 @@ static int of_get_pxafb_display(struct device *dev, struct device_node *disp,
|
||||
|
||||
timings = of_get_display_timings(disp);
|
||||
if (!timings)
|
||||
goto out;
|
||||
return -EINVAL;
|
||||
|
||||
ret = -ENOMEM;
|
||||
info->modes = kmalloc_array(timings->num_timings,
|
||||
|
Loading…
x
Reference in New Issue
Block a user