]> Git Repo - J-linux.git/commitdiff
drm/ast: potential dereference of null pointer
authorJiasheng Jiang <[email protected]>
Tue, 14 Dec 2021 01:41:26 +0000 (09:41 +0800)
committerThomas Zimmermann <[email protected]>
Tue, 14 Dec 2021 08:18:28 +0000 (09:18 +0100)
The return value of kzalloc() needs to be checked.
To avoid use of null pointer '&ast_state->base' in case of the
failure of alloc.

Fixes: f0adbc382b8b ("drm/ast: Allocate initial CRTC state of the correct size")
Signed-off-by: Jiasheng Jiang <[email protected]>
Signed-off-by: Thomas Zimmermann <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
drivers/gpu/drm/ast/ast_mode.c

index 1e30eaeb0e1b3a75d33eea41ad508d686284c4d1..d5c98f79d58d337f454bdf566e7d5738885554ca 100644 (file)
@@ -1121,7 +1121,10 @@ static void ast_crtc_reset(struct drm_crtc *crtc)
        if (crtc->state)
                crtc->funcs->atomic_destroy_state(crtc, crtc->state);
 
-       __drm_atomic_helper_crtc_reset(crtc, &ast_state->base);
+       if (ast_state)
+               __drm_atomic_helper_crtc_reset(crtc, &ast_state->base);
+       else
+               __drm_atomic_helper_crtc_reset(crtc, NULL);
 }
 
 static struct drm_crtc_state *
This page took 0.058184 seconds and 4 git commands to generate.