aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib
diff options
context:
space:
mode:
authorGravatar David Edmondson <dme@dme.org>2011-12-20 15:20:04 +0000
committerGravatar David Bremner <bremner@debian.org>2011-12-21 07:32:16 -0400
commit77ec8108a10a8d372bed6298e22c89d7de651577 (patch)
tree82d815bde160591e647b5d19f26ae4ee519d7113 /lib
parente3260d025389c2e98dbda58cff1c214497813bc2 (diff)
notmuch: Quiet buildbot warnings.
Cast away the result of various *write functions. Provide a default value for some variables to avoid "use before set" warnings.
Diffstat (limited to 'lib')
-rw-r--r--lib/database.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/database.cc b/lib/database.cc
index 98f101e6..f1a9dc2e 100644
--- a/lib/database.cc
+++ b/lib/database.cc
@@ -1447,7 +1447,7 @@ _notmuch_database_link_message_to_parents (notmuch_database_t *notmuch,
keys = g_hash_table_get_keys (parents);
for (l = keys; l; l = l->next) {
char *parent_message_id;
- const char *parent_thread_id;
+ const char *parent_thread_id = NULL;
parent_message_id = (char *) l->data;