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

Diff for /src/usr.bin/sort/sort.c between version 1.32 and 1.33

version 1.32, 2007/03/07 18:11:03 version 1.33, 2007/03/11 00:38:01
Line 254 
Line 254 
         else          else
                 get = makekey;                  get = makekey;
   
         if (!SINGL_FLD) {          if ((buffer = malloc(bufsize)) == NULL)
                   err(2, NULL);
            bufend = buffer + bufsize - 1;
            if (!SINGL_FLD) {
                 if ((linebuf = malloc(linebuf_size)) == NULL)                  if ((linebuf = malloc(linebuf_size)) == NULL)
                         err(2, NULL);                          err(2, NULL);
         }          }

Legend:
Removed from v.1.32  
changed lines
  Added in v.1.33