From fa456525df5916c3cad4ae61f87d7a952f05e630 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 11 Feb 2018 17:02:58 -0800 Subject: [PATCH] Fixed bug in float hashing logic. --- limmutable.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/limmutable.c b/limmutable.c index e3e3034..959695e 100644 --- a/limmutable.c +++ b/limmutable.c @@ -70,8 +70,12 @@ static int Lcreate_instance(lua_State *L) item_hash = 0x97167da9; break; case LUA_TNUMBER: - item_hash = (lua_Integer)lua_tonumber(L, -1); - break; + { + // Cast float bits to integer + lua_Number n = lua_tonumber(L, -1); + item_hash = *((lua_Integer*)&n); + break; + } case LUA_TBOOLEAN: // Arbitrarily chosen values item_hash = lua_toboolean(L, -1)? 0x82684f71 : 0x88d66f2a;