Edje: Remove duplicate NULL reassignment 19/82019/2
authorYeshwanth Reddivari <r.yeshwanth@samsung.com>
Mon, 23 Nov 2015 09:51:08 +0000 (18:51 +0900)
committerGerrit Code Review <gerrit@review.vlan103.tizen.org>
Wed, 3 Aug 2016 09:03:34 +0000 (02:03 -0700)
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

Change-Id: Ibac16ffc1f5b2718ef93d9121f075a9ca182ff21

src/lib/edje/edje_edit.c

index bdb96a5..a2d24f6 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;
 }