mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
io: Fix "buffer full" error with certain buffer sizes
Remove a useless check in xmlParserInputBufferGrow that could be triggered after changing xmlBufAvail in c14cac8b. Fixes #438.
This commit is contained in:
parent
4c6922f763
commit
9a76bfef0f
6
xmlIO.c
6
xmlIO.c
@ -3234,12 +3234,6 @@ xmlParserInputBufferGrow(xmlParserInputBufferPtr in, int len) {
|
|||||||
if ((len <= MINLEN) && (len != 4))
|
if ((len <= MINLEN) && (len != 4))
|
||||||
len = MINLEN;
|
len = MINLEN;
|
||||||
|
|
||||||
if (xmlBufAvail(in->buffer) <= 0) {
|
|
||||||
xmlIOErr(XML_IO_BUFFER_FULL, NULL);
|
|
||||||
in->error = XML_IO_BUFFER_FULL;
|
|
||||||
return(-1);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (xmlBufGrow(in->buffer, len + 1) < 0) {
|
if (xmlBufGrow(in->buffer, len + 1) < 0) {
|
||||||
xmlIOErrMemory("growing input buffer");
|
xmlIOErrMemory("growing input buffer");
|
||||||
in->error = XML_ERR_NO_MEMORY;
|
in->error = XML_ERR_NO_MEMORY;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user