aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJani Nikula <jani@nikula.org>2015-09-03 22:39:58 +0300
committerDavid Bremner <david@tethera.net>2015-09-07 09:43:31 -0300
commit243ca658dff5aefa2d6c76121451463360fa56a7 (patch)
tree958dcf45b4ddd8f9fbe6bf5ab354c00428e16889
parentdfe15c0e1b18f4d9ab5d328399e56b3be4a251a5 (diff)
cli: abstract new mailbox creation
We'll be needing more mailbox creation soon, so abstract it away. While at it, check for allocation failures. No other functional changes.
-rw-r--r--notmuch-search.c23
1 files changed, 19 insertions, 4 deletions
diff --git a/notmuch-search.c b/notmuch-search.c
index 7fdc6aca..36f58eb8 100644
--- a/notmuch-search.c
+++ b/notmuch-search.c
@@ -243,6 +243,21 @@ do_search_threads (search_context_t *ctx)
return 0;
}
+static mailbox_t *new_mailbox (void *ctx, const char *name, const char *addr)
+{
+ mailbox_t *mailbox;
+
+ mailbox = talloc (ctx, mailbox_t);
+ if (! mailbox)
+ return NULL;
+
+ mailbox->name = talloc_strdup (mailbox, name);
+ mailbox->addr = talloc_strdup (mailbox, addr);
+ mailbox->count = 1;
+
+ return mailbox;
+}
+
/* Returns TRUE iff name and addr is duplicate. If not, stores the
* name/addr pair in order to detect subsequent duplicates. */
static notmuch_bool_t
@@ -262,10 +277,10 @@ is_duplicate (const search_context_t *ctx, const char *name, const char *addr)
return TRUE;
}
- mailbox = talloc (ctx->format, mailbox_t);
- mailbox->name = talloc_strdup (mailbox, name);
- mailbox->addr = talloc_strdup (mailbox, addr);
- mailbox->count = 1;
+ mailbox = new_mailbox (ctx->format, name, addr);
+ if (! mailbox)
+ return FALSE;
+
g_hash_table_insert (ctx->addresses, key, mailbox);
return FALSE;