mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-13 13:17:36 +03:00
patch from Vasily Tchekalkin to fix #109865 Daniel
* HTMLtree.c: patch from Vasily Tchekalkin to fix #109865 Daniel
This commit is contained in:
parent
9e07710b95
commit
645c690d49
@ -1,3 +1,7 @@
|
||||
Thu Apr 10 23:38:13 CEST 2003 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* HTMLtree.c: patch from Vasily Tchekalkin to fix #109865
|
||||
|
||||
Thu Apr 10 15:32:44 CEST 2003 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* xmlreader.c: fixing HasValue for namespace as raised by
|
||||
|
@ -800,6 +800,10 @@ htmlNodeDumpFormatOutput(xmlOutputBufferPtr buf, xmlDocPtr doc,
|
||||
xmlOutputBufferWriteString(buf, ">");
|
||||
} else {
|
||||
xmlOutputBufferWriteString(buf, "></");
|
||||
if ((cur->ns != NULL) && (cur->ns->prefix != NULL)) {
|
||||
xmlOutputBufferWriteString(buf, (const char *)cur->ns->prefix);
|
||||
xmlOutputBufferWriteString(buf, ":");
|
||||
}
|
||||
xmlOutputBufferWriteString(buf, (const char *)cur->name);
|
||||
xmlOutputBufferWriteString(buf, ">");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user