Roberto Ierusalimschy пре 13 година
родитељ
комит
8287a0db55
1 измењених фајлова са 3 додато и 3 уклоњено
  1. 3 3
      ltable.c

+ 3 - 3
ltable.c

@@ -1,5 +1,5 @@
 /*
 /*
-** $Id: ltable.c,v 2.70 2012/02/01 21:57:15 roberto Exp roberto $
+** $Id: ltable.c,v 2.71 2012/05/23 15:37:09 roberto Exp roberto $
 ** Lua tables (hash)
 ** Lua tables (hash)
 ** See Copyright Notice in lua.h
 ** See Copyright Notice in lua.h
 */
 */
@@ -480,13 +480,13 @@ const TValue *luaH_getstr (Table *t, TString *key) {
 */
 */
 const TValue *luaH_get (Table *t, const TValue *key) {
 const TValue *luaH_get (Table *t, const TValue *key) {
   switch (ttype(key)) {
   switch (ttype(key)) {
-    case LUA_TNIL: return luaO_nilobject;
     case LUA_TSHRSTR: return luaH_getstr(t, rawtsvalue(key));
     case LUA_TSHRSTR: return luaH_getstr(t, rawtsvalue(key));
+    case LUA_TNIL: return luaO_nilobject;
     case LUA_TNUMBER: {
     case LUA_TNUMBER: {
       int k;
       int k;
       lua_Number n = nvalue(key);
       lua_Number n = nvalue(key);
       lua_number2int(k, n);
       lua_number2int(k, n);
-      if (luai_numeq(cast_num(k), nvalue(key))) /* index is int? */
+      if (luai_numeq(cast_num(k), n)) /* index is int? */
         return luaH_getint(t, k);  /* use specialized version */
         return luaH_getint(t, k);  /* use specialized version */
       /* else go through */
       /* else go through */
     }
     }