From: Carl Worth Date: Tue, 20 Oct 2009 20:07:19 +0000 (-0700) Subject: message: Use g_hash_table_destroy instead of g_hash_table_unref X-Git-Tag: 0.1~812 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=7f254fb603f5ee073d48b052c00e1fdb6b8dc940;hp=5a84df0f1507753b1776636ad268d36b7346a8fd 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.) --- 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);