[BACK]Return to names.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mail

Diff for /src/usr.bin/mail/names.c between version 1.22 and 1.23

version 1.22, 2015/01/20 16:59:07 version 1.23, 2015/10/16 17:56:07
Line 88 
Line 88 
   
         if (line == NULL || *line == '\0')          if (line == NULL || *line == '\0')
                 return(NULL);                  return(NULL);
         if ((nbuf = (char *)malloc(strlen(line) + 1)) == NULL)          if ((nbuf = malloc(strlen(line) + 1)) == NULL)
                 errx(1, "Out of memory");                  err(1, "malloc");
         top = NULL;          top = NULL;
         np = NULL;          np = NULL;
         cp = line;          cp = line;

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23