X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=editmsg.c;h=6d848e321f7c71e49eab4b459e8231df38c1700e;hp=a11a5e4b843b84bba1bd80c947ec5e93e88d24e8;hb=6ebff74ad242d4c56fb7762965b19cee14fd2daa;hpb=a264c7bd834b6a72c90e9f672a2e0fdb06c18083 diff --git a/editmsg.c b/editmsg.c index a11a5e4..6d848e3 100644 --- a/editmsg.c +++ b/editmsg.c @@ -9,21 +9,12 @@ /* simple, editor-based message editing */ -#if HAVE_CONFIG_H -# include "config.h" -#endif +#include +#include +#include #include "mutt.h" #include "copy.h" -#include "mx.h" - -#include "lib/intl.h" -#include "lib/str.h" - -#include -#include - -#include /* * return value: @@ -53,7 +44,7 @@ static int edit_one_message (CONTEXT * ctx, HEADER * cur) struct stat sb; time_t mtime = 0; - size_t size = 0; + ssize_t size = 0; mutt_mktemp (tmp); @@ -95,7 +86,7 @@ static int edit_one_message (CONTEXT * ctx, HEADER * cur) * remove it, the message will grow by one line each time the user edits * the message. */ - if (sb.st_size != 0 && truncate (tmp, sb.st_size - 1) == -1) { + if (size != 0 && truncate (tmp, --size) == -1) { mutt_error (_("could not truncate temporary mail folder: %s"), strerror (errno)); goto bail; @@ -174,8 +165,7 @@ static int edit_one_message (CONTEXT * ctx, HEADER * cur) mx_close_mailbox (&tmpctx, NULL); bail: - if (fp) - fclose (fp); + m_fclose(&fp); if (rc >= 0) unlink (tmp);