Add missing array terminator - without this, Release builds crash on startup

develop
Quietust 2012-03-27 10:23:11 -05:00
parent d2d16271f0
commit 2ac562d4d7
1 changed files with 2 additions and 1 deletions

@ -96,7 +96,8 @@ const luaL_Reg lua_vinfo_func[]=
VI_FUNC(setAddress),
VI_FUNC(getAddress),
VI_FUNC(setOS),
VI_FUNC(getOS)
VI_FUNC(getOS),
{NULL,NULL}
};
#undef VI_FUNC
void lua::RegisterVersionInfo(lua::state &st)