From 5d5c580eec880d5a67b9d4ab5bc399574dcc285e Mon Sep 17 00:00:00 2001 From: Pierre Habouzit Date: Fri, 24 Nov 2006 23:34:37 +0100 Subject: [PATCH] mutt_mktemp-- --- attach.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/attach.c b/attach.c index 118edfa..9114d86 100644 --- a/attach.c +++ b/attach.c @@ -111,7 +111,6 @@ int mutt_compose_attachment (BODY * a) if (r != -1 && entry->composetypecommand) { BODY *b; FILE *fp, *tfp; - char tempfile[_POSIX_PATH_MAX]; if ((fp = safe_fopen (a->filename, "r")) == NULL) { mutt_perror (_("Failure to open file to parse headers.")); @@ -121,6 +120,8 @@ int mutt_compose_attachment (BODY * a) b = mutt_read_mime_header (fp, 0); if (b) { + char tempfile[_POSIX_PATH_MAX]; + if (b->parameter) { parameter_list_wipe(&a->parameter); a->parameter = b->parameter; @@ -140,10 +141,9 @@ int mutt_compose_attachment (BODY * a) /* Remove headers by copying out data to another file, then * copying the file back */ fseeko (fp, b->offset, 0); - mutt_mktemp (tempfile); - if ((tfp = safe_fopen (tempfile, "w")) == NULL) { + tfp = m_tempfile(tempfile, sizeof(tempfile), NONULL(Tempdir), NULL); + if (!tfp) { mutt_perror (_("Failure to open file to strip headers.")); - goto bailout; } mutt_copy_stream (fp, tfp); -- 2.20.1