summaryrefslogtreecommitdiffstats
path: root/hash.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2011-11-04 20:43:57 -0400
committerKaz Kylheku <kaz@kylheku.com>2011-11-04 20:43:57 -0400
commitb347ef4f083443e608b46f308894acc2567ce630 (patch)
treeaa5b033d1c3744d8afccba15d422858df05c25ac /hash.c
parent32f2baf11e8139321ceae409b832d6dd37008091 (diff)
downloadtxr-b347ef4f083443e608b46f308894acc2567ce630.tar.gz
txr-b347ef4f083443e608b46f308894acc2567ce630.tar.bz2
txr-b347ef4f083443e608b46f308894acc2567ce630.zip
* hash.c (ll_hash): Added a break in the case that handles
pointer hashing of identity-equal objects. Without this, if the pointer size is not 4 or 8, we fall through to the next case.
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/hash.c b/hash.c
index 7dbabacd..8ee7a072 100644
--- a/hash.c
+++ b/hash.c
@@ -108,6 +108,7 @@ static cnum ll_hash(val obj)
case 8: default:
return (((cnum) obj) & NUM_MAX) >> 5;
}
+ break;
case FUN:
return ((cnum) obj->f.f.interp_fun + ll_hash(obj->f.env)) & NUM_MAX;
case VEC: