Edje: Remove duplicate NULL reassignment

Summary:
Remove duplicate code of variable 's' assignment to NULL in edje_edit_style_del.

Signed-off-by: Yeshwanth Reddivari <r.yeshwanth@samsung.com>

Reviewers: Hermet, alok25, mvsovani, singh.amitesh, jpeg

Reviewed By: jpeg

Subscribers: sachin.dev, cedric

Differential Revision: https://phab.enlightenment.org/D3358
This commit is contained in:
Yeshwanth Reddivari 2015-11-23 18:51:08 +09:00 committed by Jean-Philippe Andre
parent 0ddd0129ea
commit 1caea15703
1 changed files with 0 additions and 2 deletions

View File

@ -2705,8 +2705,6 @@ edje_edit_style_del(Evas_Object *obj, const char *style)
t = NULL;
}
free(s);
s = NULL;
s = NULL;
return EINA_TRUE;
}