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

Diff for /src/usr.bin/make/job.c between version 1.8 and 1.9

version 1.8, 1997/12/16 22:26:21 version 1.9, 1998/03/15 22:19:24
Line 1298 
Line 1298 
                 int bytes = howmany(job->inPipe+1, NFDBITS) * sizeof(fd_mask);                  int bytes = howmany(job->inPipe+1, NFDBITS) * sizeof(fd_mask);
                 int obytes = howmany(outputsn+1, NFDBITS) * sizeof(fd_mask);                  int obytes = howmany(outputsn+1, NFDBITS) * sizeof(fd_mask);
   
                 if (obytes != bytes) {                  if (outputsp == NULL || obytes != bytes) {
                         outputsp = realloc(outputsp, bytes);                          outputsp = realloc(outputsp, bytes);
                         if (outputsp == NULL)                          if (outputsp == NULL)
                                 return;                                  return;

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9