From: Ville Syrjälä Date: Mon, 4 Mar 2013 13:34:07 +0000 (+0200) Subject: kms_flip: Don't access freed data X-Git-Tag: intel-gpu-tools-1.4~462 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7da0af8855c1ecf075dc6019d9b711d969219722;p=profile%2Fextras%2Fintel-gpu-tools.git kms_flip: Don't access freed data Signed-off-by: Ville Syrjälä Signed-off-by: Daniel Vetter --- diff --git a/tests/kms_flip.c b/tests/kms_flip.c index cd8954c..596d07a 100644 --- a/tests/kms_flip.c +++ b/tests/kms_flip.c @@ -491,8 +491,8 @@ static void recreate_fb(struct test_output *o) o->bpp, fb_info->stride, r->handle, &new_fb_id)); - drmFree(r); gem_close(drm_fd, r->handle); + drmFree(r); do_or_die(drmModeRmFB(drm_fd, fb_info->fb_id)); o->fb_ids[o->current_fb_id] = new_fb_id;