Fix for 134274. Reset incoming server pointer in nsMsgFolder::Shutdown() and invoking it from nsMsgDBFolder::Shutdown(). r=ducarroz, sr=bienvenu, a=asa.

git-svn-id: svn://10.0.0.236/trunk@118308 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cavin%netscape.com 2002-04-05 23:58:22 +00:00
parent 2fb6464eb5
commit f8a07fd8f1
2 changed files with 4 additions and 0 deletions

View File

@ -131,6 +131,8 @@ NS_IMETHODIMP nsMsgDBFolder::Shutdown(PRBool shutdownChildren)
}
}
}
// Ask base class shutdown itself.
nsMsgFolder::Shutdown(shutdownChildren);
}
return NS_OK;
}

View File

@ -284,6 +284,8 @@ nsresult nsMsgFolder::CreateBaseMessageURI(const char *aURI)
NS_IMETHODIMP nsMsgFolder::Shutdown(PRBool shutdownChildren)
{
// Reset incoming server pointer.
mServer = nsnull;
return NS_OK;
}