Function returns successfully and I can use values from the table but the error "Debug Assertion Failed" shows up and it's the end. I know that the problem with assert is in the for loop but don't exactly know how to fix that. Thanks in advance.
static int l_xmlNodeGetValues(lua_State *L)
{
int iDocID = luaL_checkint(L, 1);
const char *pszNodeName = luaL_checkstring(L, 2);
CConfig *file = docs.at(iDocID);
int i = 1;
lua_newtable(L);
for( TiXmlElement *e = file->GetRootElement()->FirstChildElement(pszNodeName);
e; e = e->NextSiblingElement(pszNodeName) )
{
lua_pushstring(L, e->GetText());
lua_rawseti(L,-2,i);
i++;
}
return 1;
}
EDIT: When I set int i; on 0 it works but forgets about last element. Why it doesn't if i == 1 ?
The assertion failed shows up when lua_rawseti(L,-2,i); and i == 1
Since there is no solution which solves my problem I'll try to describe what it does and what's the output in these 2 cases. I simply want to get all values from specified node in xml file:
<root>
<node>A</node>
<node>B</node>
<node>C</node>
<node>D</node>
</root>
The script looks like that:
xmlfile = xmlOpenFile( "myfile.xml", "root" );
if ( xmlfile ) then
for _, v in ipairs( xmlNodeGetValues( xmlfile, "node" ) ) do
print( v );
end
end
PROBLEM:
int i = 1;
output:
A B C D !!!debug assertion failed!!!
------------------------------------------------------
int i = 0;
output:
B C D no errors...