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>
This commit is contained in:
Srivardhan Hebbar 2015-10-08 12:23:32 +02:00 committed by Cedric BAIL
parent 675ca609b5
commit 308e1536cf
1 changed files with 0 additions and 1 deletions

View File

@ -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