notmuch clon
Find a file
Carl Worth 9c3807e688 Fix more memory leaks.
These were more significant than the previous leak because these were
in the loop and leaking memory for every message being parsed. It
turns out that g_hash_table_new should probably be named
g_hash_table_new_and_leak_memory_please. The actually useful function
is g_hash_table_new_full which lets us pass a free function, (to free
keys when inserting duplicates into the hash table). And after all,
weeding out duplicates is the only reason we are using this hash table
in the first place.

It almost goes without saying, valgrind found these leaks.
2009-10-16 13:45:17 -07:00
.gitignore Rename g_mime_test to notmuch-index-message 2009-10-13 13:31:17 -07:00
Makefile Protect against missing message id while indexing files 2009-10-14 21:46:54 -07:00
notmuch-index-message.cc Fix more memory leaks. 2009-10-16 13:45:17 -07:00
xapian-dump.cc xapian-dump: Add a little mor indentation 2009-10-13 13:21:47 -07:00