X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=main.c;h=9e2ef3741e309e92249c8d0b1668d1a6a8d99a66;hp=b3d7e66a37de76f50764b6b6003301108b9aab0a;hb=70e9ad0d77eb1c2d7ef76afdba6825de75d5599f;hpb=5444b60629a8e4d01a78f5999615a084dd6cbd8a diff --git a/main.c b/main.c index b3d7e66..9e2ef37 100644 --- a/main.c +++ b/main.c @@ -672,6 +672,7 @@ int main (int argc, char **argv) char buf[LONG_STRING]; char *tempfile = NULL, *infile = NULL; char *bodytext = NULL; + FILE *fout; if (!option (OPTNOCURSES)) mutt_flushinp (); @@ -726,18 +727,16 @@ int main (int argc, char **argv) else fin = NULL; - mutt_mktemp (buf); - tempfile = m_strdup(buf); - if (draftFile) msg->env = mutt_read_rfc822_header (fin, NULL, 1, 0); /* is the following if still needed? */ - if (tempfile) { - FILE *fout; + fout = m_tempfile(buf, sizeof(buf), NONULL(Tempdir), NULL); + tempfile = m_strdup(buf); - if ((fout = safe_fopen (tempfile, "w")) == NULL) { + if (tempfile) { + if (!fout) { if (!option (OPTNOCURSES)) mutt_endwin (NULL); perror (tempfile);