Fix uninitialized memory read.

This commit is contained in:
mscott%netscape.com 1999-05-26 22:43:01 +00:00
Родитель 4aa0f54e40
Коммит 237948f959
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -77,6 +77,7 @@ nsImapUrl::nsImapUrl()
m_allowContentChange = PR_TRUE; // assume we can do MPOD.
m_validUrl = PR_TRUE; // assume the best.
m_flags = 0;
m_onlineSubDirSeparator = '\0';
nsComponentManager::CreateInstance(kUrlListenerManagerCID, nsnull, nsIUrlListenerManager::GetIID(),
(void **) getter_AddRefs(m_urlListeners));
}