From: Jean-Philippe Orsini Date: Sun, 16 Feb 2014 23:20:14 +0000 (+0000) Subject: do not free inside the fct X-Git-Tag: v1.3.0~40 X-Git-Url: https://git.wpitchoune.net/gitweb/?p=ppastats.git;a=commitdiff_plain;h=47415d6ef7b12572e99b59d18dc63e053fdb4f16 do not free inside the fct --- diff --git a/src/list.c b/src/list.c index 21daca6..0d5b02e 100644 --- a/src/list.c +++ b/src/list.c @@ -73,8 +73,6 @@ void **list_append_list(void **list1, void **list2) list[n1+n2] = NULL; - free(list1); - return list; }