Pārlūkot izejas kodu

lua_tag should return LUA_NOTAG for non-valid indices

Roberto Ierusalimschy 25 gadi atpakaļ
vecāks
revīzija
444d6a106b
2 mainītis faili ar 9 papildinājumiem un 3 dzēšanām
  1. 7 1
      bugs
  2. 2 2
      lapi.c

+ 7 - 1
bugs

@@ -215,5 +215,11 @@ Mon Sep 25 11:47:48 EST 2000
 
 ** lgc.c
 Mon Sep 25 11:50:48 EST 2000
->> GC may crash when checking C closures
+>> GC may crash when checking locked C closures
 (by Philip Yi; since 4.0b)
+
+** lapi.c
+Wed Sep 27 09:50:19 EST 2000
+>> lua_tag should return LUA_NOTAG for non-valid indices
+(by Paul Hankin; since 4.0b)
+

+ 2 - 2
lapi.c

@@ -1,5 +1,5 @@
 /*
-** $Id: lapi.c,v 1.98 2000/09/14 14:09:31 roberto Exp roberto $
+** $Id: lapi.c,v 1.99 2000/09/18 19:39:26 roberto Exp roberto $
 ** Lua API
 ** See Copyright Notice in lua.h
 */
@@ -131,7 +131,7 @@ int lua_isnumber (lua_State *L, int index) {
 int lua_tag (lua_State *L, int index) {
   btest(L, index, 
    ((ttype(o) == TAG_USERDATA) ? tsvalue(o)->u.d.tag :
-                                 luaT_effectivetag(L, o)), -1);
+                                 luaT_effectivetag(L, o)), LUA_NOTAG);
 }
 
 int lua_equal (lua_State *L, int index1, int index2) {