From 308e1536cff21d50a05686be44d21545b8e79e0c Mon Sep 17 00:00:00 2001 From: Srivardhan Hebbar Date: Thu, 8 Oct 2015 12:23:32 +0200 Subject: [PATCH] ecor_xcb: removing useless assignment. Summary: The assignment of NULL will have no effect on the caller. So removed that statment. Signed-off-by: Srivardhan Hebbar Reviewers: cedric Reviewed By: cedric Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D3153 Signed-off-by: Cedric BAIL --- src/lib/ecore_x/xcb/ecore_xcb_randr.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/ecore_x/xcb/ecore_xcb_randr.c b/src/lib/ecore_x/xcb/ecore_xcb_randr.c index c4737a9..6bc7de9 100644 --- a/src/lib/ecore_x/xcb/ecore_xcb_randr.c +++ b/src/lib/ecore_x/xcb/ecore_xcb_randr.c @@ -2180,7 +2180,6 @@ ecore_x_randr_crtc_info_free(Ecore_X_Randr_Crtc_Info *info) if (info->outputs) free(info->outputs); if (info->possible) free(info->possible); free(info); - info = NULL; } } #endif -- 2.7.4