Fixed possible uninitialized return value

r=jst@netscape.com
This commit is contained in:
jim_nance%yahoo.com 2000-04-02 00:53:21 +00:00
Родитель ccb7b3e336
Коммит ab2828200c
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -70,7 +70,7 @@ nsDOMWindowList::SetDocShell(nsIDocShell* aDocShell)
NS_IMETHODIMP NS_IMETHODIMP
nsDOMWindowList::GetLength(PRUint32* aLength) nsDOMWindowList::GetLength(PRUint32* aLength)
{ {
nsresult ret; nsresult ret = NS_OK;
PRInt32 length; PRInt32 length;
*aLength = 0; *aLength = 0;