[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[SCM] gawk branch, zos-debug, updated. gawk-4.1.0-4287-g76611ab
From: |
Arnold Robbins |
Subject: |
[SCM] gawk branch, zos-debug, updated. gawk-4.1.0-4287-g76611ab |
Date: |
Fri, 9 Jul 2021 04:18:42 -0400 (EDT) |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".
The branch, zos-debug has been updated
via 76611abad5d2f400c4064550a292d08928a89560 (commit)
from 088794de3e85eadad6b6d0a5707a5ee5c64810ec (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=76611abad5d2f400c4064550a292d08928a89560
commit 76611abad5d2f400c4064550a292d08928a89560
Author: Arnold D. Robbins <arnold@skeeve.com>
Date: Fri Jul 9 11:18:30 2021 +0300
Small fix in node.c.
diff --git a/node.c b/node.c
index dbdf645..63b3b6f 100644
--- a/node.c
+++ b/node.c
@@ -400,7 +400,9 @@ NODE *
make_str_node(const char *s, size_t len, int flags)
{
NODE *r;
+
getnode(r);
+ memset(r, '\0', sizeof(*r));
r->type = Node_val;
r->numbr = 0;
r->flags = (MALLOC|STRING|STRCUR);
-----------------------------------------------------------------------
Summary of changes:
node.c | 2 ++
1 file changed, 2 insertions(+)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [SCM] gawk branch, zos-debug, updated. gawk-4.1.0-4287-g76611ab,
Arnold Robbins <=