diff options
Diffstat (limited to 'hash.c')
-rw-r--r-- | hash.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -283,6 +283,9 @@ ucnum equal_hash(val obj, int *count, ucnum seed) static ucnum eql_hash(val obj, int *count) { + if ((*count)-- <= 0) + return 0; + switch (tag(obj)) { case TAG_PTR: switch (type(obj)) { |