[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Lua stack problem.
- From: Gabriel Lassonde <gabriel.lassonde@...>
- Date: Mon, 13 Jun 2011 14:53:47 -0400
This question was probably answered before but I ran into a problem
trying to push many lua values from a c function.
This is a small application that shows the problem.
extern "C"
{
#include "lua-5.1.4/src/lua.h"
#include "lua-5.1.4/src/lauxlib.h"
}
void main()
{
lua_State * state = luaL_newstate();
for(size_t i = 0; i < 50; ++i)
{
//lua_checkstack(state, 1); // Uncommenting this "fixes" the problem.
lua_pushnumber(state, 7.0);
}
lua_close(state);
}
Upon "lua_close" the program crash (Heap corruption).
I am compiling under windows.
Can anyone help me understand what the problem is?
Thank you,
Gabriel