mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-29 11:41:22 +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:
@ -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>
|
Thu Apr 10 15:32:44 CEST 2003 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
* xmlreader.c: fixing HasValue for namespace as raised by
|
* xmlreader.c: fixing HasValue for namespace as raised by
|
||||||
|
@ -800,6 +800,10 @@ htmlNodeDumpFormatOutput(xmlOutputBufferPtr buf, xmlDocPtr doc,
|
|||||||
xmlOutputBufferWriteString(buf, ">");
|
xmlOutputBufferWriteString(buf, ">");
|
||||||
} else {
|
} else {
|
||||||
xmlOutputBufferWriteString(buf, "></");
|
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, (const char *)cur->name);
|
||||||
xmlOutputBufferWriteString(buf, ">");
|
xmlOutputBufferWriteString(buf, ">");
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user