nsCOMArray::RemoveObjectAt fails to remove nulls correctly. Bug 265772,
r=darin, sr=dbaron
This commit is contained in:
Родитель
9553d3277e
Коммит
b3322114f4
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче