mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
When calling xmlNodeDump make sure we grow the buffer quickly
Make sure the underlying new buffer allocated use a double-it scheme for the time of the dump.
This commit is contained in:
parent
2af19f985b
commit
23922c536c
@ -2247,6 +2247,7 @@ xmlBufNodeDump(xmlBufPtr buf, xmlDocPtr doc, xmlNodePtr cur, int level,
|
||||
size_t use;
|
||||
int ret;
|
||||
xmlOutputBufferPtr outbuf;
|
||||
int oldalloc;
|
||||
|
||||
xmlInitParser();
|
||||
|
||||
@ -2278,7 +2279,10 @@ xmlBufNodeDump(xmlBufPtr buf, xmlDocPtr doc, xmlNodePtr cur, int level,
|
||||
outbuf->written = 0;
|
||||
|
||||
use = xmlBufUse(buf);
|
||||
oldalloc = xmlBufGetAllocationScheme(buf);
|
||||
xmlBufSetAllocationScheme(buf, XML_BUFFER_ALLOC_DOUBLEIT);
|
||||
xmlNodeDumpOutput(outbuf, doc, cur, level, format, NULL);
|
||||
xmlBufSetAllocationScheme(buf, oldalloc);
|
||||
xmlFree(outbuf);
|
||||
ret = xmlBufUse(buf) - use;
|
||||
return (ret);
|
||||
|
Loading…
x
Reference in New Issue
Block a user