mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
patch from Dodji Seketeli to avoid a leak on repeated uses of
* xmlwriter.c: patch from Dodji Seketeli to avoid a leak on repeated uses of xmlTextWriterStartDocument() Daniel svn path=/trunk/; revision=3642
This commit is contained in:
parent
734e76675f
commit
caa1951d59
@ -1,3 +1,8 @@
|
||||
Wed Jul 4 17:44:20 CEST 2007 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* xmlwriter.c: patch from Dodji Seketeli to avoid a leak on repeated
|
||||
uses of xmlTextWriterStartDocument()
|
||||
|
||||
Tue Jun 26 13:30:50 CEST 2007 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* xmlschemas.c: fix a crash on solaris when a printf %s with a NULL
|
||||
|
@ -545,7 +545,9 @@ xmlTextWriterStartDocument(xmlTextWriterPtr writer, const char *version,
|
||||
|
||||
writer->out->encoder = encoder;
|
||||
if (encoder != NULL) {
|
||||
writer->out->conv = xmlBufferCreateSize(4000);
|
||||
if (writer->out->conv == NULL) {
|
||||
writer->out->conv = xmlBufferCreateSize(4000);
|
||||
}
|
||||
xmlCharEncOutFunc(encoder, writer->out->conv, NULL);
|
||||
if ((writer->doc != NULL) && (writer->doc->encoding == NULL))
|
||||
writer->doc->encoding = xmlStrdup((xmlChar *)writer->out->encoder->name);
|
||||
|
Loading…
x
Reference in New Issue
Block a user