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

Diff for /src/usr.bin/yacc/reader.c between version 1.31 and 1.32

version 1.31, 2014/12/05 04:03:57 version 1.32, 2015/12/11 20:25:47
Line 137 
Line 137 
                 return;                  return;
         }          }
         if (line == NULL || linesize != (LINESIZE + 1)) {          if (line == NULL || linesize != (LINESIZE + 1)) {
                 if (line)                  free(line);
                         free(line);  
                 linesize = LINESIZE + 1;                  linesize = LINESIZE + 1;
                 line = malloc(linesize);                  line = malloc(linesize);
                 if (line == NULL)                  if (line == NULL)

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