From: Richard M. Stallman Date: Sun, 6 Aug 1995 23:57:31 +0000 (+0000) Subject: (main): Fix previous change. X-Git-Tag: emacs-19.34~3067 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=af7bd34e27296229035ed87435f2d741e2700591;p=emacs.git (main): Fix previous change. Add error check for empty OUTNAME. --- diff --git a/lib-src/movemail.c b/lib-src/movemail.c index fd33302b9e6..0cbd426478e 100644 --- a/lib-src/movemail.c +++ b/lib-src/movemail.c @@ -160,6 +160,9 @@ main (argc, argv) mmdf_init (argv[0]); #endif + if (*outname == 0) + fatal ("Destination file name is empty", 0); + /* Check access to output file. */ if (access (outname, F_OK) == 0 && access (outname, W_OK) != 0) pfatal_with_name (outname); @@ -238,8 +241,9 @@ main (argc, argv) desc = open (tempname, O_WRONLY | O_CREAT | O_EXCL, 0666); if (desc < 0) { - char *message = (char *) malloc (strlen (tempname) + 50); - sprintf (message, "%s--see source file lib-src/movemail.c"); + char *message = (char *) xmalloc (strlen (tempname) + 50); + sprintf (message, "%s--see source file lib-src/movemail.c", + tempname); pfatal_with_name (message); } close (desc);