aboutsummaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2011-04-27 22:51:54 +0300
committerArnold D. Robbins <arnold@skeeve.com>2011-04-27 22:51:54 +0300
commit04746bc5c0301fac55badc956225f486607dffd9 (patch)
treebcf5a6644265574c59d2f47129009770ed4bab59 /eval.c
parent9e2c7a30a0dfa4f50ea4c052d18f9a923bb51b87 (diff)
downloadegawk-04746bc5c0301fac55badc956225f486607dffd9.tar.gz
egawk-04746bc5c0301fac55badc956225f486607dffd9.tar.bz2
egawk-04746bc5c0301fac55badc956225f486607dffd9.zip
Code cleanups in array.c and side effects in other files.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index 0923a8ff..f4d66b10 100644
--- a/eval.c
+++ b/eval.c
@@ -1378,7 +1378,7 @@ free_arrayfor(NODE *r)
size_t num_elems = r->table_size;
NODE **list = r->var_array;
while (num_elems > 0)
- ahash_unref(list[--num_elems]);
+ unref(list[--num_elems]);
efree(list);
}
freenode(r);