From: Richard Russon Date: Tue, 2 Jul 2019 13:54:39 +0000 (+0100) Subject: tags: fix leak X-Git-Tag: 2019-10-25~148^2~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=79c06e53e7185925799c63507427c5ce2750eac0;p=neomutt tags: fix leak --- diff --git a/email/tags.c b/email/tags.c index c843f645d..a7ed1aad9 100644 --- a/email/tags.c +++ b/email/tags.c @@ -196,7 +196,7 @@ bool driver_tags_replace(struct TagHead *head, char *tags) { driver_tags_add(head, np->data); } - mutt_list_clear(&hsplit); + mutt_list_free(&hsplit); } return true; }