From: Rob Landley Date: Wed, 24 May 2006 17:45:47 +0000 (-0000) Subject: Yann Morin spotted some leftover flotsam from halfway through the recent X-Git-Tag: 1_2_0~319 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5fc467e758819b01d7516851d7e0993b43cceccf;p=oweals%2Fbusybox.git Yann Morin spotted some leftover flotsam from halfway through the recent llist.c interface change that accidentally got checked in. My bad. --- diff --git a/editors/sed.c b/editors/sed.c index 39b28d006..a17d1e551 100644 --- a/editors/sed.c +++ b/editors/sed.c @@ -134,7 +134,7 @@ void sed_free_and_close_stuff(void) { sed_cmd_t *sed_cmd = bbg.sed_cmd_head.next; - llist_free_contents(bbg.append_head); + llist_free(bbg.append_head, free); while (sed_cmd) { sed_cmd_t *sed_cmd_next = sed_cmd->next;