diff options
author | Srivardhan Hebbar <sri.hebbar@samsung.com> | 2015-10-08 12:23:32 +0200 |
---|---|---|
committer | Cedric BAIL <cedric@osg.samsung.com> | 2015-10-09 10:00:32 +0200 |
commit | 308e1536cff21d50a05686be44d21545b8e79e0c (patch) | |
tree | 1b89968b9092a66412e7dd8d34e7335e2c26ecaa /src/lib/ecore_x/xcb/ecore_xcb_randr.c | |
parent | 675ca609b519c7de66deab3c071244b1392e09bb (diff) |
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 <sri.hebbar@samsung.com>
Reviewers: cedric
Reviewed By: cedric
Subscribers: cedric
Differential Revision: https://phab.enlightenment.org/D3153
Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
Diffstat (limited to 'src/lib/ecore_x/xcb/ecore_xcb_randr.c')
-rw-r--r-- | src/lib/ecore_x/xcb/ecore_xcb_randr.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/ecore_x/xcb/ecore_xcb_randr.c b/src/lib/ecore_x/xcb/ecore_xcb_randr.c index c4737a9e54..6bc7de9677 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) | |||
2180 | if (info->outputs) free(info->outputs); | 2180 | if (info->outputs) free(info->outputs); |
2181 | if (info->possible) free(info->possible); | 2181 | if (info->possible) free(info->possible); |
2182 | free(info); | 2182 | free(info); |
2183 | info = NULL; | ||
2184 | } | 2183 | } |
2185 | } | 2184 | } |
2186 | #endif | 2185 | #endif |