v.0x155
revision 13 - 5 - 2009
1# problem:
XMLVariable* XMLElement::FindVariableZ(const char* x,bool ForceCreate = false,char* defnew = 0,bool Temp = false),compile failed if defnew is const string.
1# fix:
XMLVariable* XMLElement::FindVariableZ(const char* x,bool ForceCreate = false,const char* defnew = 0,bool Temp = false).
2# problem:
program crashed on int XMLElement::XMLQuery(const char* expression2,XMLElement** rv,unsigned int deep) if expression2's right value is a string.
2# fix:
change xml.cpp line 6845 from
a1++;to
a1 = strchr(a1 + 1,' ');
thank author for the great work.