]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
2000-07-04 Neil Brown <neilb@cse.unsw.edu.au>
authorhjl <hjl>
Wed, 5 Jul 2000 00:03:40 +0000 (00:03 +0000)
committerhjl <hjl>
Wed, 5 Jul 2000 00:03:40 +0000 (00:03 +0000)
* support/export/hostname.c (hostent_dup): Handle the NULL
h_aliases field.

ChangeLog
support/export/hostname.c

index 8501856bea30cdbf81f0bb6f1b2eb4d4847b95e8..2c54ed0087f4599a968a939bcc4feb4903cd3047 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-07-04  Neil Brown  <neilb@cse.unsw.edu.au>
+
+       * support/export/hostname.c (hostent_dup): Handle the NULL
+       h_aliases field.
+
 2000-07-03  H.J. Lu <hjl@lucon.org>
 
        * README: Update the util-linux requirement.
index a37d4de44429ea670d450811415cc00b212adb3f..299fe9937b4d03606dcbc14a749cae3bd7e057a7 100644 (file)
@@ -104,7 +104,7 @@ hostent_dup (struct hostent *hp)
   char **sp;
   struct hostent *cp;
 
-  for (sp = hp->h_aliases; *sp; sp++)
+  for (sp = hp->h_aliases; sp && *sp; sp++)
     {
       num_aliases++;
       len_aliases += align (strlen (*sp) + 1, ALIGNMENT)
@@ -130,14 +130,14 @@ hostent_dup (struct hostent *hp)
   cp->h_aliases = (char **) &(((char *) cp) [pos]);
   pos += num_aliases * sizeof (char *);
   for (sp = hp->h_aliases, i = 0; i < num_aliases; i++, sp++)
-    if (*sp)
+    if (sp && *sp)
       {
        cp->h_aliases [i] = (char *) &(((char *) cp) [pos]);
        strcpy (cp->h_aliases [i], *sp);
        pos += align (strlen (*sp) + 1, ALIGNMENT);
       }
     else
-      cp->h_aliases [i] = *sp;
+      cp->h_aliases [i] = NULL;
 
   pos = len_ent + len_name + len_aliases;
   cp->h_addr_list = (char **) &(((char *) cp) [pos]);