]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
drm/panel: fix a possible null pointer dereference
authorMa Ke <make_ruc2021@163.com>
Sat, 7 Oct 2023 03:31:05 +0000 (11:31 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 28 Nov 2023 17:14:45 +0000 (17:14 +0000)
commit4fa930ba046d20fc1899770396ee11e905fa96e4
tree18f6764c7971de1bd8add3182a1462e5dfef5df8
parentb0702ee4d811708251cdf54d4a1d3e888d365111
drm/panel: fix a possible null pointer dereference

[ Upstream commit 924e5814d1f84e6fa5cb19c6eceb69f066225229 ]

In versatile_panel_get_modes(), the return value of drm_mode_duplicate()
is assigned to mode, which will lead to a NULL pointer dereference
on failure of drm_mode_duplicate(). Add a check to avoid npd.

Signed-off-by: Ma Ke <make_ruc2021@163.com>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://lore.kernel.org/r/20231007033105.3997998-1-make_ruc2021@163.com
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20231007033105.3997998-1-make_ruc2021@163.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/gpu/drm/panel/panel-arm-versatile.c