free the current element, else one element was missed - teed - A multiplex relay tee(1) daemon. HTML git clone git://bitreich.org/teed git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/teed DIR Log DIR Files DIR Refs DIR Tags DIR README DIR LICENSE --- DIR commit 81543713efc69529db9bbcbd90e0b16a4481a45f DIR parent 2a6e3d8d898be6ab1a5ac16b3d288ddef0bc3089 HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Mon, 14 Aug 2023 15:09:45 +0200 free the current element, else one element was missed Signed-off-by: Christoph Lohmann <20h@r-36.net> Diffstat: M teed.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/teed.c b/teed.c @@ -70,7 +70,7 @@ llist_free(llist *l) while (l != NULL) { tl = l->next; - llist_free1(l->prev); + llist_free1(l); l = tl; } }