From 3699ebd1770218368902469a32daf13ce6057408 Mon Sep 17 00:00:00 2001 From: "Nicolas \"Pixel\" Noble" Date: Tue, 1 Dec 2009 00:15:47 +0100 Subject: Trying to better cleanup the stack after the various opens. --- include/BLua.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/BLua.h') diff --git a/include/BLua.h b/include/BLua.h index 1ae977f..c12a8b7 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) { return open(L); } + int wrap_open(openlualib_t open) { int n = gettop(); int r = open(L); for(remove(n); 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