mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 13:45:00 +00:00
lib: Leverage memcpy (and xcslen)
This commit is contained in:
parent
5ab8a21ec8
commit
0b4939645c
1 changed files with 3 additions and 6 deletions
|
@ -8010,12 +8010,9 @@ build_model(XML_Parser parser) {
|
|||
const XML_Char *src;
|
||||
dest->name = str;
|
||||
src = dtd->scaffold[src_node].name;
|
||||
for (;;) {
|
||||
*str++ = *src;
|
||||
if (! *src)
|
||||
break;
|
||||
src++;
|
||||
}
|
||||
const size_t nameLen = xcslen(src) + /* null terminator*/ 1;
|
||||
memcpy(str, src, nameLen * sizeof(XML_Char));
|
||||
str += nameLen;
|
||||
dest->numchildren = 0;
|
||||
dest->children = NULL;
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue