Skip to content
Snippets Groups Projects
Commit 650fb688 authored by Alberto Massari's avatar Alberto Massari
Browse files

set() and append() were not NULL-terminating the buffer (jira#1236)

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@175945 13f79535-47bb-0310-9956-ffa450edef68
parent 513ffe4f
No related branches found
No related tags found
No related merge requests found
......@@ -191,6 +191,9 @@ void DOMBuffer::append(const XMLCh* const chars, const unsigned int count)
expandCapacity(actualCount);
memcpy(&fBuffer[fIndex], chars, actualCount * sizeof(XMLCh));
fIndex += actualCount;
// Keep it null terminated
fBuffer[fIndex] = 0;
}
void DOMBuffer::set(const XMLCh* const chars, const unsigned int count)
......@@ -203,6 +206,9 @@ void DOMBuffer::set(const XMLCh* const chars, const unsigned int count)
expandCapacity(actualCount);
memcpy(fBuffer, chars, actualCount * sizeof(XMLCh));
fIndex = actualCount;
// Keep it null terminated
fBuffer[fIndex] = 0;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment