Edje: Remove duplicate NULL reassignment
authorYeshwanth Reddivari <r.yeshwanth@samsung.com>
Mon, 23 Nov 2015 09:51:08 +0000 (18:51 +0900)
committerJean-Philippe Andre <jp.andre@samsung.com>
Mon, 23 Nov 2015 10:41:30 +0000 (19:41 +0900)
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

src/lib/edje/edje_edit.c

index 8d09e45..7922d78 100644 (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;
 }