mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
fix output bug reported by Petr Pajas and analyzed by Bill Daniel
* xmlIO.c: fix output bug reported by Petr Pajas and analyzed by Bill Daniel svn path=/trunk/; revision=3695
This commit is contained in:
parent
6f8611fdb4
commit
c4ba8a4221
@ -1,3 +1,8 @@
|
||||
Sat Feb 16 11:06:54 CET 2008 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* xmlIO.c: fix output bug reported by Petr Pajas and analyzed by
|
||||
Bill
|
||||
|
||||
Fri Feb 15 09:32:11 CET 2008 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* include/libxml/xmlerror.h tree.c: patch from Julien Charbon
|
||||
|
11
xmlIO.c
11
xmlIO.c
@ -3315,6 +3315,16 @@ xmlOutputBufferWriteEscape(xmlOutputBufferPtr out, const xmlChar *str,
|
||||
cons = len;
|
||||
chunk = (out->buffer->size - out->buffer->use) - 1;
|
||||
|
||||
/*
|
||||
* make sure we have enough room to save first, if this is
|
||||
* not the case force a flush, but make sure we stay in the loop
|
||||
*/
|
||||
if (chunk < 40) {
|
||||
nbchars = 0;
|
||||
oldwritten = -1;
|
||||
goto flush;
|
||||
}
|
||||
|
||||
/*
|
||||
* first handle encoding stuff.
|
||||
*/
|
||||
@ -3360,6 +3370,7 @@ xmlOutputBufferWriteEscape(xmlOutputBufferPtr out, const xmlChar *str,
|
||||
if ((nbchars < MINLEN) && (len <= 0))
|
||||
goto done;
|
||||
|
||||
flush:
|
||||
if (out->writecallback) {
|
||||
/*
|
||||
* second write the stuff to the I/O channel
|
||||
|
Loading…
x
Reference in New Issue
Block a user