Bug 649997 followup. Don't return uninitialized rv. Caught by ms2ger

This commit is contained in:
Boris Zbarsky 2011-04-25 15:15:28 -04:00
Родитель d901f8c00e
Коммит 6207979552
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -2300,12 +2300,11 @@ nsFormControlList::GetLength(PRUint32* aLength)
NS_IMETHODIMP
nsFormControlList::Item(PRUint32 aIndex, nsIDOMNode** aReturn)
{
nsresult rv;
nsISupports* item = GetNodeAt(aIndex);
if (!item) {
*aReturn = nsnull;
return rv;
return NS_OK;
}
return CallQueryInterface(item, aReturn);