zfengzhen/lua_tinker_5.2

vs2012 sample4 中crash

Opened this issue · 0 comments

这个例子在main函数执行结束 析构table时会crash.

我把sample4.lua里面内容全部屏蔽
sample4.cpp main函数如下
int main()
{
lua_State* L = luaL_newstate();

luaL_openlibs(L);

// 创建table haha
lua_tinker::table haha(L, "haha");
lua_close(L);

return 0;//////////////////////////////这个执行后,开始析构上面创建的对象过程中会crash. 

}