diff options
author | Erich Eckner <git@eckner.net> | 2019-05-23 15:05:21 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2021-01-20 19:19:09 +0100 |
commit | e36bc8b78ba7719fbdde205c56546d0172036b81 (patch) | |
tree | 4e3c58fbdbe730d4976d05b3fc43e9a19838b24a | |
parent | 9fd11985f69b4704b6d7e4cf34403ccda2878a29 (diff) | |
download | alpine-e36bc8b78ba7719fbdde205c56546d0172036b81.tar.xz |
pith/send.c: Einrückung korrigiert
-rw-r--r-- | pith/send.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/pith/send.c b/pith/send.c index d57c700d..1bc47ced 100644 --- a/pith/send.c +++ b/pith/send.c @@ -2106,14 +2106,14 @@ call_mailer(METAENV *header, struct mail_bodystruct *body, char **alt_smtp_serve done: -for (pff = last_header->next; pff; ) { - fs_give((void**)&pff->name); - fs_give((void**)&pff->textbuf); - PINEFIELD *pfff = pff->next; - fs_give((void**)&pff); - pff = pfff; -} -last_header->next = NULL; + for (pff = last_header->next; pff; ) { + fs_give((void**)&pff->name); + fs_give((void**)&pff->textbuf); + PINEFIELD *pfff = pff->next; + fs_give((void**)&pff); + pff = pfff; + } + last_header->next = NULL; #ifdef SMIME /* Free replacement encrypted body */ |