free the current element, else one element was missed - teed - A multiplex rela… | |
git clone git://bitreich.org/teed git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
LICENSE | |
--- | |
commit 81543713efc69529db9bbcbd90e0b16a4481a45f | |
parent 2a6e3d8d898be6ab1a5ac16b3d288ddef0bc3089 | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Mon, 14 Aug 2023 15:09:45 +0200 | |
free the current element, else one element was missed | |
Signed-off-by: Christoph Lohmann <[email protected]> | |
Diffstat: | |
M teed.c | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
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; | |
} | |
} |