elm: Fix obvious warning (leak / typo)

warning: ignoring return value of function declared with
warn_unused_result attribute [-Wunused-result]

Thanks GCC for pointing out the leak.
This commit is contained in:
Jean-Philippe Andre 2016-06-21 13:29:28 +09:00
parent e2ebd8e95a
commit 2f0b9edbb4
1 changed files with 1 additions and 1 deletions

View File

@ -1697,7 +1697,7 @@ cancel:
eo_unref(obj);
eo_unref(it_data->model);
eo_unref(it_data->parent_model);
eina_stringshare_add(it_data->parent_path);
eina_stringshare_del(it_data->parent_path);
free(it_data);
}