nsCOMArray::RemoveObjectAt fails to remove nulls correctly. Bug 265772,

r=darin, sr=dbaron
This commit is contained in:
bzbarsky%mit.edu 2005-11-02 16:05:25 +00:00
Родитель 9553d3277e
Коммит b3322114f4
1 изменённых файлов: 4 добавлений и 7 удалений

Просмотреть файл

@ -135,13 +135,10 @@ PRBool
nsCOMArray_base::RemoveObjectAt(PRInt32 aIndex)
{
nsISupports* element = ObjectAt(aIndex);
if (element) {
PRBool result = mArray.RemoveElementAt(aIndex);
if (result)
NS_IF_RELEASE(element);
return result;
}
return PR_FALSE;
PRBool result = mArray.RemoveElementAt(aIndex);
if (result)
NS_IF_RELEASE(element);
return result;
}
// useful for destructors