lib: Remove condition regarding a NULL parent_thread_id.

A recent change guaranteed that a message ID can never be resolved
to a NULL thread ID, so we don't need this extra case.
This commit is contained in:
Carl Worth 2010-04-12 15:54:03 -07:00
parent 071022c253
commit 14073b8851

View file

@ -1321,15 +1321,13 @@ _notmuch_database_link_message_to_parents (notmuch_database_t *notmuch,
message, message,
parent_message_id); parent_message_id);
if (parent_thread_id != NULL) { if (*thread_id == NULL) {
if (*thread_id == NULL) { *thread_id = talloc_strdup (message, parent_thread_id);
*thread_id = talloc_strdup (message, parent_thread_id); _notmuch_message_add_term (message, "thread", *thread_id);
_notmuch_message_add_term (message, "thread", *thread_id); } else if (strcmp (*thread_id, parent_thread_id)) {
} else if (strcmp (*thread_id, parent_thread_id)) { ret = _merge_threads (notmuch, *thread_id, parent_thread_id);
ret = _merge_threads (notmuch, *thread_id, parent_thread_id); if (ret)
if (ret) goto DONE;
goto DONE;
}
} }
} }