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

Diff for /src/usr.bin/patch/inp.c between version 1.8 and 1.9

version 1.8, 1999/01/03 05:33:48 version 1.9, 2002/07/04 04:22:48
Line 288 
Line 288 
     lines_per_buf = BUFFERSIZE / maxlen;      lines_per_buf = BUFFERSIZE / maxlen;
     tireclen = maxlen;      tireclen = maxlen;
     tibuf[0] = malloc((MEM)(BUFFERSIZE + 1));      tibuf[0] = malloc((MEM)(BUFFERSIZE + 1));
       if (tibuf[0] == Nullch)
           fatal1("out of memory\n");
     tibuf[1] = malloc((MEM)(BUFFERSIZE + 1));      tibuf[1] = malloc((MEM)(BUFFERSIZE + 1));
     if (tibuf[1] == Nullch)      if (tibuf[1] == Nullch)
         fatal1("out of memory\n");          fatal1("out of memory\n");

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