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

Diff for /src/usr.bin/awk/run.c between version 1.43 and 1.44

version 1.43, 2019/08/13 10:41:33 version 1.44, 2019/08/13 10:45:56
Line 1224 
Line 1224 
   
         y = execute(a[0]);      /* source string */          y = execute(a[0]);      /* source string */
         origs = s = strdup(getsval(y));          origs = s = strdup(getsval(y));
           if (s == NULL)
                   FATAL("out of space in split");
         arg3type = ptoi(a[3]);          arg3type = ptoi(a[3]);
         if (a[2] == 0)          /* fs string */          if (a[2] == 0)          /* fs string */
                 fs = *FS;                  fs = *FS;

Legend:
Removed from v.1.43  
changed lines
  Added in v.1.44