mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
io: Allocate output buffer with XML_BUFFER_ALLOC_IO
This allows efficient shrinking of memory buffers. Support IO buffers in xmlBufDetach.
This commit is contained in:
parent
072facc49e
commit
a279aae30f
8
buf.c
8
buf.c
@ -195,8 +195,16 @@ xmlBufDetach(xmlBufPtr buf) {
|
||||
if (buf->error)
|
||||
return(NULL);
|
||||
|
||||
if ((buf->alloc == XML_BUFFER_ALLOC_IO) &&
|
||||
(buf->content != buf->contentIO)) {
|
||||
ret = xmlStrndup(buf->content, buf->use);
|
||||
xmlFree(buf->contentIO);
|
||||
} else {
|
||||
ret = buf->content;
|
||||
}
|
||||
|
||||
buf->content = NULL;
|
||||
buf->contentIO = NULL;
|
||||
buf->size = 0;
|
||||
buf->use = 0;
|
||||
UPDATE_COMPAT(buf);
|
||||
|
2
xmlIO.c
2
xmlIO.c
@ -1394,7 +1394,7 @@ xmlAllocOutputBuffer(xmlCharEncodingHandlerPtr encoder) {
|
||||
xmlFree(ret);
|
||||
return(NULL);
|
||||
}
|
||||
xmlBufSetAllocationScheme(ret->buffer, XML_BUFFER_ALLOC_DOUBLEIT);
|
||||
xmlBufSetAllocationScheme(ret->buffer, XML_BUFFER_ALLOC_IO);
|
||||
|
||||
ret->encoder = encoder;
|
||||
if (encoder != NULL) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user