1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-03-05 16:58:17 +03:00

applied the patch to xmlTextWriterStartPI() suggested by Daniel Schulman

* xmlwriter.c: applied the patch to xmlTextWriterStartPI()
  suggested by Daniel Schulman in #128313
Daniel
This commit is contained in:
Daniel Veillard 2003-12-09 15:14:26 +00:00
parent 6984e6d3cc
commit 10c08c7d06
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Tue Dec 9 16:12:50 CET 2003 Daniel Veillard <daniel@veillard.com>
* xmlwriter.c: applied the patch to xmlTextWriterStartPI()
suggested by Daniel Schulman in #128313
Tue Dec 9 15:18:32 CET 2003 Daniel Veillard <daniel@veillard.com>
* configure.in Makefile.am: another patch from Kenneth Haley

View File

@ -2110,6 +2110,10 @@ xmlTextWriterStartPI(xmlTextWriterPtr writer, const xmlChar * target)
sum += count;
p->state = XML_TEXTWRITER_TEXT;
break;
case XML_TEXTWRITER_NONE:
case XML_TEXTWRITER_TEXT:
case XML_TEXTWRITER_DTD:
break;
case XML_TEXTWRITER_PI:
case XML_TEXTWRITER_PI_TEXT:
xmlGenericError(xmlGenericErrorContext,