mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 10:31:46 +09:00
video: fbdev: pxafb: clear allocated memory for video modes
[ Upstream commitb951d80aaf] When parsing the video modes from DT properties, make sure to zero out memory before using it. This is important because not all fields in the mode struct are explicitly initialized, even though they are used later on. Fixes:420a488278("video: fbdev: pxafb: initial devicetree conversion") Reviewed-by: Robert Jarzmik <robert.jarzmik@free.fr> Signed-off-by: Daniel Mack <daniel@zonque.org> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> Signed-off-by: Sasha Levin <alexander.levin@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b2b5343639
commit
0b339773a3
@@ -2130,8 +2130,8 @@ static int of_get_pxafb_display(struct device *dev, struct device_node *disp,
|
||||
return -EINVAL;
|
||||
|
||||
ret = -ENOMEM;
|
||||
info->modes = kmalloc_array(timings->num_timings,
|
||||
sizeof(info->modes[0]), GFP_KERNEL);
|
||||
info->modes = kcalloc(timings->num_timings, sizeof(info->modes[0]),
|
||||
GFP_KERNEL);
|
||||
if (!info->modes)
|
||||
goto out;
|
||||
info->num_modes = timings->num_timings;
|
||||
|
||||
Reference in New Issue
Block a user