Skip to content

Commit 4d8457f

Browse files
jhovolddianders
authored andcommitted
drm/edid: fix info leak when failing to get panel id
Make sure to clear the transfer buffer before fetching the EDID to avoid leaking slab data to the logs on errors that leave the buffer unchanged. Fixes: 69c7717 ("drm/edid: Dump the EDID when drm_edid_get_panel_id() has an error") Cc: stable@vger.kernel.org # 6.2 Cc: Douglas Anderson <dianders@chromium.org> Signed-off-by: Johan Hovold <johan+linaro@kernel.org> Reviewed-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Douglas Anderson <dianders@chromium.org> Signed-off-by: Douglas Anderson <dianders@chromium.org> Link: https://patchwork.freedesktop.org/patch/msgid/20230302074704.11371-1-johan+linaro@kernel.org
1 parent 77bc762 commit 4d8457f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/gpu/drm/drm_edid.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2797,7 +2797,7 @@ u32 drm_edid_get_panel_id(struct i2c_adapter *adapter)
27972797
* the EDID then we'll just return 0.
27982798
*/
27992799

2800-
base_block = kmalloc(EDID_LENGTH, GFP_KERNEL);
2800+
base_block = kzalloc(EDID_LENGTH, GFP_KERNEL);
28012801
if (!base_block)
28022802
return 0;
28032803

0 commit comments

Comments
 (0)