mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 13:45:00 +00:00
Avoid realloc(NULL, n)
This commit is contained in:
parent
2844be94b7
commit
34b47abda7
1 changed files with 1 additions and 1 deletions
|
@ -550,7 +550,7 @@ int XML_Parse(XML_Parser parser, const char *s, int len, int isFinal)
|
|||
if (nLeftOver) {
|
||||
if (buffer == 0 || nLeftOver > bufferLim - buffer) {
|
||||
/* FIXME avoid integer overflow */
|
||||
buffer = realloc(buffer, len * 2);
|
||||
buffer = buffer == 0 ? malloc(len * 2) : realloc(buffer, len * 2);
|
||||
if (!buffer) {
|
||||
errorCode = XML_ERROR_NO_MEMORY;
|
||||
eventPtr = eventEndPtr = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue