fix assert on mail startup r=sspitzer

This commit is contained in:
bienvenu%netscape.com 2000-09-05 18:51:31 +00:00
Родитель 55a866f4cd
Коммит 6a3fa517a6
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -380,11 +380,11 @@ NS_IMETHODIMP nsMsgFolderCache::Init(nsIFileSpec *dbFileSpec)
NS_IMETHODIMP nsMsgFolderCache::GetCacheElement(const char *pathKey, PRBool createIfMissing,
nsIMsgFolderCacheElement **result)
{
nsCStringKey hashKey(pathKey);
if (!result || !pathKey)
return NS_ERROR_NULL_POINTER;
nsCStringKey hashKey(pathKey);
*result = (nsIMsgFolderCacheElement *) m_cacheElements->Get(&hashKey);