X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=message.cc;h=28f19a88502dc79ff29210297abfbed4f5ef2562;hp=a7a0cb52eeec99f34d867d264bb5d42619ddfe31;hb=98afc279573bfd9528056cb1e9398a286d97a8a3;hpb=306e19f5ddec1b10a0e99ccc54823544187e7ac3 diff --git a/message.cc b/message.cc index a7a0cb52..28f19a88 100644 --- a/message.cc +++ b/message.cc @@ -409,7 +409,12 @@ _notmuch_message_set_date (notmuch_message_t *message, { time_t time_value; - time_value = g_mime_utils_header_decode_date (date, NULL); + /* GMime really doesn't want to see a NULL date, so protect its + * sensibilities. */ + if (date == NULL) + time_value = 0; + else + time_value = g_mime_utils_header_decode_date (date, NULL); message->doc.add_value (NOTMUCH_VALUE_TIMESTAMP, Xapian::sortable_serialise (time_value));