зеркало из https://github.com/mozilla/gecko-dev.git
fix growing of uint32 arrays r=naving, sr=sspitzer part of work for 76668
This commit is contained in:
Родитель
423814c41d
Коммит
ee3030edc3
|
@ -172,7 +172,7 @@ PRUint32 nsUInt32Array::Add(PRUint32 newElement)
|
|||
PRUint32 nsUInt32Array::Add(PRUint32 *elementPtr, PRUint32 numElements)
|
||||
{
|
||||
if (SetSize(m_nSize + numElements))
|
||||
nsCRT::memcpy(m_pData + m_nSize, elementPtr, numElements * sizeof(PRUint32));
|
||||
nsCRT::memcpy(m_pData + m_nSize - numElements, elementPtr, numElements * sizeof(PRUint32));
|
||||
|
||||
return m_nSize;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче