mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
xmlreader: Fix return value of xmlTextReaderReadString
Return NULL if the node has no children or the children were already deleted to match the 2.12 behavior. Fixes #817.
This commit is contained in:
parent
5cce7af791
commit
bcda764930
@ -1750,7 +1750,8 @@ xmlTextReaderReadString(xmlTextReaderPtr reader)
|
||||
case XML_CDATA_SECTION_NODE:
|
||||
break;
|
||||
case XML_ELEMENT_NODE:
|
||||
if (xmlTextReaderDoExpand(reader) == -1)
|
||||
if ((xmlTextReaderDoExpand(reader) == -1) ||
|
||||
(node->children == NULL))
|
||||
return(NULL);
|
||||
break;
|
||||
case XML_ATTRIBUTE_NODE:
|
||||
|
Loading…
x
Reference in New Issue
Block a user