drm/plane-helper: fix uninitialized variable reference
authorAlex Xu (Hello71) <alex_y_xu@yahoo.ca>
Thu, 7 Oct 2021 06:37:06 +0000 (02:37 -0400)
committerSimon Ser <contact@emersion.fr>
Thu, 7 Oct 2021 10:24:44 +0000 (12:24 +0200)
drivers/gpu/drm/drm_plane_helper.c: In function 'drm_primary_helper_update':
drivers/gpu/drm/drm_plane_helper.c:113:32: error: 'visible' is used uninitialized [-Werror=uninitialized]
  113 |         struct drm_plane_state plane_state = {
      |                                ^~~~~~~~~~~
drivers/gpu/drm/drm_plane_helper.c:178:14: note: 'visible' was declared here
  178 |         bool visible;
      |              ^~~~~~~
cc1: all warnings being treated as errors

visible is an output, not an input. in practice this use might turn out
OK but it's still UB.

Fixes: df86af9133b4 ("drm/plane-helper: Add drm_plane_helper_check_state()")
Reviewed-by: Simon Ser <contact@emersion.fr>
Signed-off-by: Alex Xu (Hello71) <alex_y_xu@yahoo.ca>
Signed-off-by: Simon Ser <contact@emersion.fr>
Link: https://patchwork.freedesktop.org/patch/msgid/20211007063706.305984-1-alex_y_xu@yahoo.ca
drivers/gpu/drm/drm_plane_helper.c

index 5b2d0ca..838b32b 100644 (file)
@@ -123,7 +123,6 @@ static int drm_plane_helper_check_update(struct drm_plane *plane,
                .crtc_w = drm_rect_width(dst),
                .crtc_h = drm_rect_height(dst),
                .rotation = rotation,
-               .visible = *visible,
        };
        struct drm_crtc_state crtc_state = {
                .crtc = crtc,