mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-05 21:24:59 +00:00
Avoid doing memcpy with a null pointer.
This commit is contained in:
parent
4d724a92cf
commit
e873b03f16
1 changed files with 2 additions and 1 deletions
|
@ -3866,7 +3866,8 @@ int poolGrow(STRING_POOL *pool)
|
|||
tem->size = blockSize;
|
||||
tem->next = pool->blocks;
|
||||
pool->blocks = tem;
|
||||
memcpy(tem->s, pool->start, (pool->ptr - pool->start) * sizeof(XML_Char));
|
||||
if (pool->ptr != pool->start)
|
||||
memcpy(tem->s, pool->start, (pool->ptr - pool->start) * sizeof(XML_Char));
|
||||
pool->ptr = tem->s + (pool->ptr - pool->start);
|
||||
pool->start = tem->s;
|
||||
pool->end = tem->s + blockSize;
|
||||
|
|
Loading…
Add table
Reference in a new issue