diff options
| author | David Bremner <david@tethera.net> | 2017-05-04 08:48:44 -0400 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2017-07-14 17:58:09 -0300 |
| commit | 67dbd24ece883e9cb0258fce289e40ca276b729d (patch) | |
| tree | 6c0c67d663156dbf2966a39061081e553c967645 /util/gmime-extra.h | |
| parent | a58c75fdf6120aa3861e95a4a61fa268dee6a690 (diff) | |
cli: replace use of g_mime_message_get_date_as_string
This function goes away in gmime-3.0. Also, the memory management is
apparently error prone, witness the memory leak in notmuch-reply.
Diffstat (limited to 'util/gmime-extra.h')
| -rw-r--r-- | util/gmime-extra.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/util/gmime-extra.h b/util/gmime-extra.h index e0432a94..6e2f6ca5 100644 --- a/util/gmime-extra.h +++ b/util/gmime-extra.h @@ -3,4 +3,12 @@ #include <gmime/gmime.h> GMimeStream *g_mime_stream_stdout_new(void); + +#include <talloc.h> + +/** + * return talloc allocated date string + */ +char *g_mime_message_get_date_string (void *ctx, GMimeMessage *message); + #endif |
