Fix bug in void array's assignment operator. r=scc
This commit is contained in:
Родитель
6b54700b73
Коммит
12086a287d
|
@ -96,6 +96,8 @@ nsVoidArray& nsVoidArray::operator=(const nsVoidArray& other)
|
|||
SetArraySize(otherCount);
|
||||
mImpl->mCount = otherCount;
|
||||
SetArrayOwner(PR_TRUE);
|
||||
|
||||
nsCRT::memcpy(mImpl->mArray, other.mImpl->mArray, mImpl->mCount * sizeof(void*));
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
|
Загрузка…
Ссылка в новой задаче