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

Diff for /src/usr.bin/mg/echo.c between version 1.53 and 1.54

version 1.53, 2012/11/03 16:26:32 version 1.54, 2012/11/03 16:28:14
Line 709 
Line 709 
          * it fills, and then put into the help buffer.           * it fills, and then put into the help buffer.
          */           */
         linesize = MAX(ncol, maxwidth) + 1;          linesize = MAX(ncol, maxwidth) + 1;
         if ((linebuf = malloc(linesize)) == NULL)          if ((linebuf = malloc(linesize)) == NULL) {
                   free_file_list(wholelist);
                 return (FALSE);                  return (FALSE);
           }
         width = 0;          width = 0;
   
         /*          /*

Legend:
Removed from v.1.53  
changed lines
  Added in v.1.54