зеркало из https://github.com/mozilla/gecko-dev.git
Fix crash in ~nsCOMArrayEnumerator. Bug 181592, r=alecf, sr=scc
This commit is contained in:
Родитель
c296a3a69f
Коммит
988211b158
|
@ -132,8 +132,8 @@ NS_IMPL_ISUPPORTS1(nsCOMArrayEnumerator, nsISimpleEnumerator)
|
|||
nsCOMArrayEnumerator::~nsCOMArrayEnumerator()
|
||||
{
|
||||
// only release the entries that we haven't visited yet
|
||||
while (mIndex < mArraySize) {
|
||||
NS_IF_RELEASE(mValueArray[mIndex++]);
|
||||
for (; mIndex < mArraySize; ++mIndex) {
|
||||
NS_IF_RELEASE(mValueArray[mIndex]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче