test_progressbar: removed unnecessary null check.

This commit is contained in:
Daniel Juyung Seo 2014-06-13 09:31:21 +09:00
parent a7e1cc8fae
commit ddd3273cf8
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ _progressbar_destroy_cb(void *data, Evas_Object *obj, void *event_info EINA_UNUS
Progressbar_Data *pd = data;
if (!pd) return;
if (pd->timer) ecore_timer_del(pd->timer);
ecore_timer_del(pd->timer);
free(pd);
my_progressbar_test_stop(NULL, NULL, NULL);
evas_object_del(obj);