From 40be9c4de5c8025d3a174aee2764c926a78eb7c6 Mon Sep 17 00:00:00 2001 From: John Darrington Date: Sun, 29 Jul 2012 13:37:41 +0200 Subject: [PATCH] Fix memory leak in dictionary.c --- src/data/dictionary.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/data/dictionary.c b/src/data/dictionary.c index f65c6a063e..5731d78695 100644 --- a/src/data/dictionary.c +++ b/src/data/dictionary.c @@ -301,6 +301,7 @@ dict_destroy (struct dictionary *d) d->callbacks = NULL ; dict_clear (d); + string_array_destroy (&d->documents); hmap_destroy (&d->name_map); attrset_destroy (&d->attributes); dict_clear_mrsets (d); -- 2.30.2