mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
malloc-fail: Fix null deref in xmlBufResize
Found with libFuzzer, see #344.
This commit is contained in:
parent
b3b53dcce4
commit
1aabc9db40
3
buf.c
3
buf.c
@ -735,7 +735,8 @@ xmlBufResize(xmlBufPtr buf, size_t size)
|
||||
if (buf->content == NULL) {
|
||||
rebuf = (xmlChar *) xmlMallocAtomic(newSize);
|
||||
buf->use = 0;
|
||||
rebuf[buf->use] = 0;
|
||||
if (rebuf != NULL)
|
||||
rebuf[buf->use] = 0;
|
||||
} else if (buf->size - buf->use < 100) {
|
||||
rebuf = (xmlChar *) xmlRealloc(buf->content, newSize);
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user