I have xml like this
<w:document>
<w:body>
<w:p>
<abra-cadabra>
<w:t>test</w:t>
</abra-cadabra>
</w:p>
<w:p>
</w:p>
<w:p>
<w:t>test1</w:t>
</w:p>
</w:body>
I use pugixml to parce it.
pugi::xml_node cur_sibling = cur_node.next_sibling();
if (cur_sibling.name() == "")
find_sibling(cur_node.parent());
here cur_node is test node, and next_subling structure looks like this: cur_sibling sorry for russian, it sais can not read memory so I cant do anything with it, and attempt to get it's name cause stack owerflow error. Have no idea what going on, why it didn't return null node?