Initialize rv otherwise checking it later could return wrong results.

This commit is contained in:
putterman%netscape.com 1999-06-27 23:16:25 +00:00
Родитель 6ee32ebc48
Коммит 3045dc9eb0
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -93,7 +93,9 @@ NS_IMETHODIMP
nsMsgAccount::GetIncomingServer(nsIMsgIncomingServer * *aIncomingServer)
{
if (!aIncomingServer) return NS_ERROR_NULL_POINTER;
nsresult rv;
//Need to initialize this otherwise if there's already an m_incomingServer, this
//will be unitialized.
nsresult rv = NS_OK;
// need to call SetKey() first!
if (!m_accountKey) return NS_ERROR_NOT_INITIALIZED;