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

Diff for /src/usr.bin/m4/eval.c between version 1.71 and 1.72

version 1.71, 2013/11/14 15:56:50 version 1.72, 2014/04/28 12:34:11
Line 790 
Line 790 
                         maxwraps = 16;                          maxwraps = 16;
                 else                  else
                         maxwraps *= 2;                          maxwraps *= 2;
                 m4wraps = xrealloc(m4wraps, maxwraps * sizeof(*m4wraps),                  m4wraps = xreallocarray(m4wraps, maxwraps, sizeof(*m4wraps),
                    "too many m4wraps");                     "too many m4wraps");
         }          }
         m4wraps[wrapindex++] = xstrdup(text);          m4wraps[wrapindex++] = xstrdup(text);

Legend:
Removed from v.1.71  
changed lines
  Added in v.1.72