From: Thomas Roessler Date: Sat, 26 Feb 2000 12:39:52 +0000 (+0000) Subject: Don't use an uninitialized string for error reporting. X-Git-Tag: mutt-1-1-6-rel~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=773a2796d4940099033c34d72c81c2c44e241d5d;p=mutt Don't use an uninitialized string for error reporting. --- diff --git a/mx.c b/mx.c index 9e412f10..fdefa123 100644 --- a/mx.c +++ b/mx.c @@ -467,7 +467,7 @@ static int mx_open_mailbox_append (CONTEXT *ctx) if (mkdir (ctx->path, S_IRWXU)) { - mutt_perror (tmp); + mutt_perror (ctx->path); return (-1); }