raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=f153cad879eaeb986556c12aac0a4d6e2498732c
commit f153cad879eaeb986556c12aac0a4d6e2498732c Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com> Date: Tue Jun 9 18:58:40 2015 +0900 eina btlog - util - shut up coverity eina_btlog is a backtrace "cleaner" that takes a raw bt from eina log and gives a full readable bt for humans. it's run-and-quit binary like ls or rm - it does its job and exits, so leaks are really of no concern here... CID 1297407 --- src/bin/eina/eina_btlog.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/eina/eina_btlog.c b/src/bin/eina/eina_btlog.c index bd8ce93..2f46e1e 100644 --- a/src/bin/eina/eina_btlog.c +++ b/src/bin/eina/eina_btlog.c @@ -154,6 +154,7 @@ bt_append(Eina_List *btl, const char *btline) } btl = eina_list_append(btl, bt); } + else free(bt); free(bin); return btl; } --