1
0
Fork 0
mirror of https://github.com/deltachat/deltachat-core.git synced 2025-10-06 03:50:08 +02:00
This commit is contained in:
B. Petersen 2018-02-15 13:46:11 +01:00
parent d3f460d917
commit c56fd615bc

View file

@ -636,6 +636,7 @@ cleanup:
* @param approx_characters Rough length of the expected string.
*
* @return A summary for the given messages. The returned string must be free()'d.
* Returns an empty string on errors, never returns NULL.
*/
char* mrmsg_get_summarytext(mrmsg_t* msg, int approx_characters)
{
@ -936,6 +937,7 @@ void mrmsg_get_authorNtitle_from_filename(const char* pathNfilename, char** ret_
char* mrmsg_get_summarytext_by_raw(int type, const char* text, mrparam_t* param, int approx_characters)
{
/* get a summary text, result must be free()'d, never returns NULL. */
char* ret = NULL;
char* pathNfilename = NULL, *label = NULL, *value = NULL;