mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-05 05:05:00 +00:00
lib: Leverage (existing single-char) poolAppendChar
This commit is contained in:
parent
03ff328b5c
commit
333e86181f
1 changed files with 2 additions and 4 deletions
|
@ -6504,11 +6504,10 @@ storeEntityValue(XML_Parser parser, const ENCODING *enc,
|
|||
next = entityTextPtr + enc->minBytesPerChar;
|
||||
/* fall through */
|
||||
case XML_TOK_DATA_NEWLINE:
|
||||
if (pool->end == pool->ptr && ! poolGrow(pool)) {
|
||||
if (! poolAppendChar(pool, 0xA)) {
|
||||
result = XML_ERROR_NO_MEMORY;
|
||||
goto endEntityValue;
|
||||
}
|
||||
*(pool->ptr)++ = 0xA;
|
||||
break;
|
||||
case XML_TOK_CHAR_REF: {
|
||||
XML_Char buf[XML_ENCODE_MAX];
|
||||
|
@ -7703,9 +7702,8 @@ poolStoreString(STRING_POOL *pool, const ENCODING *enc, const char *ptr,
|
|||
const char *end) {
|
||||
if (! poolAppend(pool, enc, ptr, end))
|
||||
return NULL;
|
||||
if (pool->ptr == pool->end && ! poolGrow(pool))
|
||||
if (! poolAppendChar(pool, 0))
|
||||
return NULL;
|
||||
*(pool->ptr)++ = 0;
|
||||
return pool->start;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue