mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-24 03:48:10 +01:00
notmuch show: Avoid segmentation for message with no subject.
It's safer to return an empty string rather than NULL for missing header values.
This commit is contained in:
parent
5d614048b4
commit
091d18c54c
2 changed files with 4 additions and 4 deletions
|
@ -238,7 +238,7 @@ notmuch_message_file_get_header (notmuch_message_file_t *message,
|
|||
return decoded_value;
|
||||
|
||||
if (message->parsing_finished)
|
||||
return NULL;
|
||||
return "";
|
||||
|
||||
#define NEXT_HEADER_LINE(closure) \
|
||||
while (1) { \
|
||||
|
@ -348,5 +348,5 @@ notmuch_message_file_get_header (notmuch_message_file_t *message,
|
|||
header_desired);
|
||||
}
|
||||
|
||||
return NULL;
|
||||
return "";
|
||||
}
|
||||
|
|
|
@ -618,8 +618,8 @@ notmuch_message_get_date (notmuch_message_t *message);
|
|||
* modified or freed by the caller (nor should it be referenced after
|
||||
* the message is destroyed).
|
||||
*
|
||||
* Returns NULL if the message does not contain a header line matching
|
||||
* 'header' of if any error occurs.
|
||||
* Returns an empty string ("") if the message does not contain a
|
||||
* header line matching 'header'. Returns NULL if any error occurs.
|
||||
*/
|
||||
const char *
|
||||
notmuch_message_get_header (notmuch_message_t *message, const char *header);
|
||||
|
|
Loading…
Reference in a new issue