X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=recvattach.c;h=b9db799f523531d45a2020469f25d69324ffa9fe;hp=94ef9abbb17e985a194bdd06a07d060cb0224bdf;hb=3b7a8f7577e7b40d39ba510f54bde0d3ec0cc58f;hpb=1a79031e2cd056f6f7d95dfaccc58323251521ba diff --git a/recvattach.c b/recvattach.c index 94ef9ab..b9db799 100644 --- a/recvattach.c +++ b/recvattach.c @@ -486,16 +486,16 @@ void mutt_save_attachment_list (FILE * fp, int tag, BODY * top, HEADER * hdr, } static void -mutt_query_pipe_attachment (char *command, FILE * fp, BODY * body, int afilter) +mutt_query_pipe_attachment(char *command, FILE * fp, BODY * body, int afilter) { char tfile[_POSIX_PATH_MAX]; char warning[STRING + _POSIX_PATH_MAX]; - int tempfd; + int tempfd = -1; if (afilter) { - snprintf (warning, sizeof (warning), - _("WARNING! You are about to overwrite %s, continue?"), - body->filename); + snprintf(warning, sizeof (warning), + _("WARNING! You are about to overwrite %s, continue?"), + body->filename); if (mutt_yesorno (warning, M_NO) != M_YES) { CLEARLINE (LINES - 1); return; @@ -503,7 +503,7 @@ mutt_query_pipe_attachment (char *command, FILE * fp, BODY * body, int afilter) tempfd = m_tempfd(tfile, sizeof(tfile), NONULL(Tempdir), NULL); } - if (mutt_pipe_attachment (fp, body, command, tempfd)) { + if (mutt_pipe_attachment(fp, body, command, tempfd)) { if (afilter) { mutt_unlink (body->filename); mutt_rename_file (tfile, body->filename);