aboutsummaryrefslogtreecommitdiffstats
path: root/node.c
diff options
context:
space:
mode:
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);
}