aboutsummaryrefslogtreecommitdiffstats
path: root/node.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-03-31 22:07:53 +0300
committerArnold D. Robbins <arnold@skeeve.com>2015-03-31 22:07:53 +0300
commita47af3141cf4a6b43e20db872e2b45ff9abb071f (patch)
tree43421d099953fc8459f847999a02f0f840932a5e /node.c
parent2ee1a928483f4fe4f594aebc5c1f8da1253c28b9 (diff)
downloadegawk-a47af3141cf4a6b43e20db872e2b45ff9abb071f.tar.gz
egawk-a47af3141cf4a6b43e20db872e2b45ff9abb071f.tar.bz2
egawk-a47af3141cf4a6b43e20db872e2b45ff9abb071f.zip
Get indirect calls working!
Diffstat (limited to 'node.c')
-rw-r--r--node.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/node.c b/node.c
index 7a1d99f6..9fd4c7b9 100644
--- a/node.c
+++ b/node.c
@@ -431,14 +431,6 @@ r_unref(NODE *tmp)
#ifdef GAWKDEBUG
if (tmp == NULL)
return;
- if (tmp->type == Node_regex) {
-fprintf(stderr, "got here!\n"); fflush(stderr);
- if (tmp->re_reg != NULL)
- refree(tmp->re_reg);
- if (tmp->re_text != NULL)
- unref(tmp->re_text);
- goto free_the_node;
- }
if ((tmp->flags & MALLOC) != 0) {
if (tmp->valref > 1) {
tmp->valref--;
@@ -455,7 +447,6 @@ fprintf(stderr, "got here!\n"); fflush(stderr);
mpfr_unset(tmp);
free_wstr(tmp);
-free_the_node:
freenode(tmp);
}