mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
parent
2835337a1a
commit
0d170acaba
4
xmlIO.c
4
xmlIO.c
@ -2431,8 +2431,10 @@ xmlOutputBufferWrite(xmlOutputBufferPtr out, int len, const char *buf) {
|
||||
}
|
||||
}
|
||||
ret = xmlBufAdd(out->buffer, (const xmlChar *) buf, chunk);
|
||||
if (ret != 0)
|
||||
if (ret != 0) {
|
||||
out->error = XML_ERR_NO_MEMORY;
|
||||
return(-1);
|
||||
}
|
||||
|
||||
if ((xmlBufUse(out->buffer) < MINLEN) && (chunk == len))
|
||||
goto done;
|
||||
|
Loading…
x
Reference in New Issue
Block a user