projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b5c7d19
)
drm: mali-dp: potential dereference of null pointer
author
Jiasheng Jiang
<jiasheng@iscas.ac.cn>
Tue, 14 Dec 2021 10:08:37 +0000
(18:08 +0800)
committer
Liviu Dudau
<liviu.dudau@arm.com>
Mon, 11 Apr 2022 17:30:18 +0000
(18:30 +0100)
The return value of kzalloc() needs to be checked.
To avoid use of null pointer '&state->base' in case of the
failure of alloc.
Fixes: 99665d072183 ("drm: mali-dp: add malidp_crtc_state struct")
Signed-off-by: Jiasheng Jiang <jiasheng@iscas.ac.cn>
Reviewed-by: Brian Starkey <brian.starkey@arm.com>
Signed-off-by: Liviu Dudau <liviu.dudau@arm.com>
Link:
https://patchwork.freedesktop.org/patch/msgid/20211214100837.46912-1-jiasheng@iscas.ac.cn
drivers/gpu/drm/arm/malidp_crtc.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/arm/malidp_crtc.c
b/drivers/gpu/drm/arm/malidp_crtc.c
index 494075ddbef68374aaca8927a1141379925adb38..b5928b52e2791faed8041829be1697435d2ad43a 100644
(file)
--- a/
drivers/gpu/drm/arm/malidp_crtc.c
+++ b/
drivers/gpu/drm/arm/malidp_crtc.c
@@
-487,7
+487,10
@@
static void malidp_crtc_reset(struct drm_crtc *crtc)
if (crtc->state)
malidp_crtc_destroy_state(crtc, crtc->state);
- __drm_atomic_helper_crtc_reset(crtc, &state->base);
+ if (state)
+ __drm_atomic_helper_crtc_reset(crtc, &state->base);
+ else
+ __drm_atomic_helper_crtc_reset(crtc, NULL);
}
static int malidp_crtc_enable_vblank(struct drm_crtc *crtc)