diff options
author | Jakob Bornecrantz <jakob@vmware.com> | 2009-08-03 13:43:59 +0100 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2009-08-04 13:29:49 +1000 |
commit | 4cb72b1727140f131b2df5f37c2e54f5965f98c2 (patch) | |
tree | 2771cf62024a188203ac3c6e027e414fd169b703 /drivers | |
parent | 7781de74568bddfefbd2d32a934a8c791a2420cd (diff) | |
download | linux-3.10-4cb72b1727140f131b2df5f37c2e54f5965f98c2.tar.gz linux-3.10-4cb72b1727140f131b2df5f37c2e54f5965f98c2.tar.bz2 linux-3.10-4cb72b1727140f131b2df5f37c2e54f5965f98c2.zip |
drm: Catch stop possible NULL pointer reference
This was caught by Weiss. Also added some comments to the
fb_changed and mode_changed variables to explain what they do.
Signed-off-by: Jakob Bornecrantz <jakob@vmware.com>
Tested-by: Thomas White <taw@bitwiz.org.uk>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpu/drm/drm_crtc_helper.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/gpu/drm/drm_crtc_helper.c b/drivers/gpu/drm/drm_crtc_helper.c index 3da9cfa3184..6aaa2cb2336 100644 --- a/drivers/gpu/drm/drm_crtc_helper.c +++ b/drivers/gpu/drm/drm_crtc_helper.c @@ -706,8 +706,8 @@ int drm_crtc_helper_set_config(struct drm_mode_set *set) struct drm_encoder **save_encoders, *new_encoder; struct drm_framebuffer *old_fb = NULL; bool save_enabled; - bool mode_changed = false; - bool fb_changed = false; + bool mode_changed = false; /* if true do a full mode set */ + bool fb_changed = false; /* if true and !mode_changed just do a flip */ struct drm_connector *connector; int count = 0, ro, fail = 0; struct drm_crtc_helper_funcs *crtc_funcs; @@ -758,6 +758,8 @@ int drm_crtc_helper_set_config(struct drm_mode_set *set) if (set->crtc->fb == NULL) { DRM_DEBUG("crtc has no fb, full mode set\n"); mode_changed = true; + } else if (set->fb == NULL) { + mode_changed = true; } else if ((set->fb->bits_per_pixel != set->crtc->fb->bits_per_pixel) || set->fb->depth != set->crtc->fb->depth) |