summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mh/mh_init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mh/mh_init.c b/mh/mh_init.c
index ca2468628..9153476c0 100644
--- a/mh/mh_init.c
+++ b/mh/mh_init.c
@@ -1030,13 +1030,13 @@ mh_draft_message (const char *name, const char *msgspec, char **pname)
char *
mh_safe_make_file_name (const char *dir, const char *file)
{
- file = mu_make_file_name (dir, file);
- if (!file)
+ char *name = mu_make_file_name (dir, file);
+ if (!name)
{
mu_diag_funcall (MU_DIAG_ERROR, "mu_make_file_name", NULL, ENOMEM);
abort ();
}
- return file;
+ return name;
}

Return to:

Send suggestions and report system problems to the System administrator.