1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 12:25:09 +03:00

fixing HasValue for namespace as raised by Denys Duchier Daniel

* xmlreader.c: fixing HasValue for namespace as raised by
  Denys Duchier
Daniel
This commit is contained in:
Daniel Veillard 2003-04-10 13:36:54 +00:00
parent 02ea141495
commit 9e07710b95
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Thu Apr 10 15:32:44 CEST 2003 Daniel Veillard <daniel@veillard.com>
* xmlreader.c: fixing HasValue for namespace as raised by
Denys Duchier
Wed Apr 9 14:07:18 CEST 2003 Daniel Veillard <daniel@veillard.com>
* HTMLparser.c include/libxml/HTMLparser.h: exported

View File

@ -2034,6 +2034,7 @@ xmlTextReaderHasValue(xmlTextReaderPtr reader) {
case XML_CDATA_SECTION_NODE:
case XML_PI_NODE:
case XML_COMMENT_NODE:
case XML_NAMESPACE_DECL:
return(1);
default:
break;