procmime.c remove spaces from empty lines

This commit is contained in:
gfgit 2023-08-31 15:48:47 +02:00
parent a32a5b7cd6
commit 51feaad261

View file

@ -1580,10 +1580,10 @@ static void procmime_parse_message_rfc822(MimeInfo *mimeinfo, gboolean short_sca
g_free(hentry[8].body);
hentry[8].body = tmp;
}
content_start = ftell(fp);
claws_fclose(fp);
len = mimeinfo->length - (content_start - mimeinfo->offset);
if (len < 0)
len = 0;
@ -1604,7 +1604,7 @@ static void procmime_parse_message_rfc822(MimeInfo *mimeinfo, gboolean short_sca
short_scan);
g_ptr_array_free(additional_headers,TRUE);
for (i = 0; i < (sizeof hentry / sizeof hentry[0]); i++) {
g_free(hentry[i].body);
hentry[i].body = NULL;