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

Diff for /src/usr.bin/sed/compile.c between version 1.45 and 1.46

version 1.45, 2017/12/12 12:52:01 version 1.46, 2017/12/13 16:06:34
Line 458 
Line 458 
 {  {
         static char *lbuf;          static char *lbuf;
         static size_t bufsize;          static size_t bufsize;
         int asize, ref, size;          size_t asize, ref, size;
         char c, *text, *op, *sp;          char c, *text, *op, *sp;
         int sawesc = 0;          int sawesc = 0;
   
Line 665 
Line 665 
 static char *  static char *
 compile_text(void)  compile_text(void)
 {  {
         int asize, esc_nl, size;          size_t asize, size, bufsize;
         char *lbuf, *text, *p, *op, *s;          char *lbuf, *text, *p, *op, *s;
         size_t bufsize;          int esc_nl;
   
         lbuf = text = NULL;          lbuf = text = NULL;
         asize = size = 0;          asize = size = 0;

Legend:
Removed from v.1.45  
changed lines
  Added in v.1.46