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

Diff for /src/usr.bin/tmux/procname.c between version 1.11 and 1.12

version 1.11, 2013/10/10 12:39:24 version 1.12, 2014/04/16 23:05:38
Line 96 
Line 96 
   
 retry:  retry:
         if (sysctl(mib, nitems(mib), NULL, &len, NULL, 0) == -1)          if (sysctl(mib, nitems(mib), NULL, &len, NULL, 0) == -1)
                 return (NULL);                  goto error;
         len = (len * 5) / 4;          len = (len * 5) / 4;
   
         if ((newbuf = realloc(buf, len)) == NULL)          if ((newbuf = realloc(buf, len)) == NULL)

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12