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

Diff for /src/usr.bin/unifdef/unifdef.c between version 1.19 and 1.20

version 1.19, 2015/04/18 18:28:38 version 1.20, 2015/08/20 22:32:42
Line 1518 
Line 1518 
         if (len < 0)          if (len < 0)
                 err(2, "snprintf");                  err(2, "snprintf");
         size = (size_t)len + 1;          size = (size_t)len + 1;
         s = (char *)malloc(size);          s = malloc(size);
         if (s == NULL)          if (s == NULL)
                 err(2, "malloc");                  err(2, "malloc");
         snprintf(s, size, "%s%s", s1, s2);          snprintf(s, size, "%s%s", s1, s2);

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20