Bug 453858 followup - quiet console warnings in nsDOMClassInfo.cpp. r+sr=bzbarsky

This commit is contained in:
Blake Kaplan 2008-09-26 15:52:05 -07:00
Родитель ec2b59d7c2
Коммит c40f66a9ee
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -7612,7 +7612,9 @@ nsArraySH::GetItemAt(nsISupports *aNative, PRUint32 aIndex,
nsISupports **aResult)
{
nsCOMPtr<nsINodeList> list(do_QueryInterface(aNative));
NS_ENSURE_TRUE(list, NS_ERROR_UNEXPECTED);
if (!list) {
return NS_ERROR_UNEXPECTED;
}
NS_IF_ADDREF(*aResult = list->GetNodeAt(aIndex));