aboutsummaryrefslogtreecommitdiff
path: root/ltable.c
diff options
context:
space:
mode:
Diffstat (limited to 'ltable.c')
-rw-r--r--ltable.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltable.c b/ltable.c
index 315fc61e..9abf47eb 100644
--- a/ltable.c
+++ b/ltable.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltable.c,v 2.58 2011/06/02 19:31:40 roberto Exp roberto $ 2** $Id: ltable.c,v 2.59 2011/06/09 18:23:27 roberto Exp roberto $
3** Lua tables (hash) 3** Lua tables (hash)
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -88,7 +88,7 @@ static Node *hashnum (const Table *t, lua_Number n) {
88 int i; 88 int i;
89 luai_hashnum(i, n); 89 luai_hashnum(i, n);
90 if (i < 0) { 90 if (i < 0) {
91 if ((unsigned int)i == -(unsigned int)i) 91 if (cast(unsigned int, i) == 0u - i) /* use unsigned to avoid overflows */
92 i = 0; /* handle INT_MIN */ 92 i = 0; /* handle INT_MIN */
93 i = -i; /* must be a positive value */ 93 i = -i; /* must be a positive value */
94 } 94 }