diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-08-18 14:34:03 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-08-18 14:34:03 +0300 |
commit | b723f14ac83c52de73771a97b0b84d97cc640fd0 (patch) | |
tree | 42cc7ef50ec15f99d1d0b2f8c573a318cf599c30 /field.c | |
parent | 28462b12ebc714843113ba497b7951d010b52485 (diff) | |
parent | d9ca11d809e13dfab2c41ef51eb5007c05bb3987 (diff) | |
download | egawk-b723f14ac83c52de73771a97b0b84d97cc640fd0.tar.gz egawk-b723f14ac83c52de73771a97b0b84d97cc640fd0.tar.bz2 egawk-b723f14ac83c52de73771a97b0b84d97cc640fd0.zip |
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'field.c')
-rw-r--r-- | field.c | 10 |
1 files changed, 3 insertions, 7 deletions
@@ -217,20 +217,16 @@ rebuild_record() *n = *r; if (r->valref > 1) { /* - * This probably never happens, since it - * was not considered by previous versions of - * this function. But it seems clear that + * This can and does happen. It seems clear that * we can't leave r's stptr pointing into the * old $0 buffer that we are about to unref. - * It's not a priori obvious that valref must be - * 1 in all cases, so it seems wise to suppport - * this corner case. The only question is - * whether to add a warning message. */ emalloc(r->stptr, char *, r->stlen + 1, "rebuild_record"); memcpy(r->stptr, cops, r->stlen); r->stptr[r->stlen] = '\0'; r->flags |= MALLOC; + + n->valref = 1; // reset in the new field to start it off correctly! } n->stptr = cops; |