Include <stdlib.h>.
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 16 Aug 2003 06:58:50 +0000 (06:58 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 16 Aug 2003 06:58:50 +0000 (06:58 +0000)
(xghostname): Don't exit for anything other than memory-related
failure; just return NULL.

lib/xgethostname.c

index 1227cc994a9eba640587f668a5dd0b44f1aba239..5178784baca5bffa889d7db3078a65f0b3f405e0 100644 (file)
@@ -21,6 +21,7 @@
 # include <config.h>
 #endif
 
+#include <stdlib.h>
 #include <sys/types.h>
 
 #include <errno.h>
@@ -45,6 +46,9 @@ int gethostname ();
 # define INITIAL_HOSTNAME_LENGTH 34
 #endif
 
+/* Return the current hostname in malloc'd storage.
+   If malloc fails, exit.
+   Upon any other failure, return NULL.  */
 char *
 xgethostname ()
 {
@@ -67,7 +71,12 @@ xgethostname ()
       if (err >= 0 && hostname[k] == '\0')
        break;
       else if (err < 0 && errno != ENAMETOOLONG && errno != 0)
-       error (EXIT_FAILURE, errno, "gethostname");
+       {
+         int saved_errno = errno;
+         free (hostname);
+         errno = saved_errno;
+         return NULL;
+       }
       size *= 2;
       hostname = xrealloc (hostname, size + 1);
     }