aboutsummaryrefslogtreecommitdiff
path: root/lib/notmuch.h
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2022-05-25 07:51:14 -0300
committerDavid Bremner <david@tethera.net>2022-06-25 16:05:45 -0300
commite70df920851c6c00000b7707e3b61650548fbce7 (patch)
treef09c0e8f3b88eb12c5bf571a34468f185bfca7a0 /lib/notmuch.h
parent00ec2b271d457bf7b81efed8ff91e52290a38f4a (diff)
lib/tag: handle NULL argument to notmuch_tags_valid
Make the behaviour when passed NULL consistent with notmuch_filenames_valid. The library already passes the result of notmuch_message_get_tags without checking for NULL, so it should be handled.
Diffstat (limited to 'lib/notmuch.h')
-rw-r--r--lib/notmuch.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/notmuch.h b/lib/notmuch.h
index 2e6ec2af..44263a66 100644
--- a/lib/notmuch.h
+++ b/lib/notmuch.h
@@ -2262,6 +2262,9 @@ notmuch_message_properties_destroy (notmuch_message_properties_t *properties);
* valid string. Whereas when this function returns FALSE,
* notmuch_tags_get will return NULL.
*
+ * It is acceptable to pass NULL for 'tags', in which case this
+ * function will always return FALSE.
+
* See the documentation of notmuch_message_get_tags for example code
* showing how to iterate over a notmuch_tags_t object.
*/