okra pushed a commit to branch master. http://git.enlightenment.org/apps/ephoto.git/commit/?id=d748fdaaf29fae3f0bc1dc499b1b038c7e102590
commit d748fdaaf29fae3f0bc1dc499b1b038c7e102590 Author: Stephen Houston <[email protected]> Date: Wed Dec 2 19:13:09 2015 -0600 Ephoto: Use correct entry del func --- src/bin/ephoto_thumb_browser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/ephoto_thumb_browser.c b/src/bin/ephoto_thumb_browser.c index 8b1fe55..a81eca7 100644 --- a/src/bin/ephoto_thumb_browser.c +++ b/src/bin/ephoto_thumb_browser.c @@ -452,7 +452,7 @@ _todo_items_process(void *data) entry->parent, ELM_GENLIST_ITEM_NONE, _entry_cmp, NULL, NULL); if (!entry->item) { - ephoto_entry_free(entry); + ephoto_entry_free(tb->ephoto, entry); } } else @@ -483,7 +483,7 @@ _todo_items_process(void *data) } else { - ephoto_entry_free(entry); + ephoto_entry_free(tb->ephoto, entry); } } tb->animator.processed++; --
