From d72f9e9e236cb35faf6ee22527fa9bf6508e46dc Mon Sep 17 00:00:00 2001 From: "Nicolas \"Pixel\" Noble" Date: Tue, 1 Dec 2009 09:22:31 +0100 Subject: Whoops... was removing a biiiit too much off the stack. --- include/BLua.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/BLua.h b/include/BLua.h index 1cc74f4..4fc9aa0 100644 --- a/include/BLua.h +++ b/include/BLua.h @@ -78,7 +78,7 @@ class Lua : public Base { void open_dir(); void open_bit(); void open_jit(); - int wrap_open(openlualib_t open) { int n = gettop(); int r = open(L); for(remove(n); n <= gettop(); remove(n));} + int wrap_open(openlualib_t open) { int n = gettop(); int r = open(L); while (n < gettop()) remove(n);} void declarefunc(const String &, lua_CFunction, int = LUA_GLOBALSINDEX); void call(const String &, int = LUA_GLOBALSINDEX, int = 0, int = 0); void call(int = 0, int = 0) throw (GeneralException); -- cgit v1.2.3