From e2167fe2a00e75740fc62fdf826d25b919bcd732 Mon Sep 17 00:00:00 2001 From: Srivardhan Hebbar Date: Mon, 19 Oct 2015 11:24:49 -0700 Subject: [PATCH] ecore_x: removing useless assignment. Summary: The assigned value has no effect outside the function. So removing it. Signed-off-by: Srivardhan Hebbar Reviewers: cedric Differential Revision: https://phab.enlightenment.org/D3181 Signed-off-by: Cedric BAIL --- src/lib/ecore_x/xlib/ecore_x_randr.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/ecore_x/xlib/ecore_x_randr.c b/src/lib/ecore_x/xlib/ecore_x_randr.c index 99d630c02c..1a948572dd 100644 --- a/src/lib/ecore_x/xlib/ecore_x_randr.c +++ b/src/lib/ecore_x/xlib/ecore_x_randr.c @@ -897,7 +897,6 @@ ecore_x_randr_mode_info_free(Ecore_X_Randr_Mode_Info *mode_info) { if (mode_info->name) free(mode_info->name); free(mode_info); - mode_info = NULL; } } #endif