From 7f254fb603f5ee073d48b052c00e1fdb6b8dc940 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Tue, 20 Oct 2009 13:07:19 -0700 Subject: [PATCH 1/1] message: Use g_hash_table_destroy instead of g_hash_table_unref I'm trying to chase down 3 still-reachable pointers to glib hash tables. This change didn't help with that, but I think destroy might be a better semantic match for what I actually want. (It shouldn't matter though since I never take any additional references.) --- message.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/message.c b/message.c index e6488a37..d888b24d 100644 --- a/message.c +++ b/message.c @@ -111,7 +111,7 @@ notmuch_message_close (notmuch_message_t *message) free (message->value.str); if (message->headers) - g_hash_table_unref (message->headers); + g_hash_table_destroy (message->headers); if (message->file) fclose (message->file); -- 2.43.0