зеркало из https://github.com/mozilla/gecko-dev.git
Bug 649997 followup. Don't return uninitialized rv. Caught by ms2ger
This commit is contained in:
Родитель
d901f8c00e
Коммит
6207979552
|
@ -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);
|
||||
|
|
Загрузка…
Ссылка в новой задаче