mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-10 09:19:28 +00:00
fix unitialized memory read.
This commit is contained in:
parent
9d2239288a
commit
9c5225addc
@ -45,16 +45,17 @@ nsIMAPHostInfo::nsIMAPHostInfo(const char *hostName, const char *userName)
|
||||
fCachedPassword = NULL;
|
||||
fCapabilityFlags = kCapabilityUndefined;
|
||||
fHierarchyDelimiters = NULL;
|
||||
fHaveWeEverDiscoveredFolders = FALSE;
|
||||
fHaveWeEverDiscoveredFolders = PR_FALSE;
|
||||
fCanonicalOnlineSubDir = NULL;
|
||||
fNamespaceList = nsIMAPNamespaceList::CreatensIMAPNamespaceList();
|
||||
fUsingSubscription = TRUE;
|
||||
fOnlineTrashFolderExists = FALSE;
|
||||
fShouldAlwaysListInbox = TRUE;
|
||||
fUsingSubscription = PR_TRUE;
|
||||
fOnlineTrashFolderExists = PR_FALSE;
|
||||
fShouldAlwaysListInbox = PR_TRUE;
|
||||
fShellCache = nsIMAPBodyShellCache::Create();
|
||||
fPasswordVerifiedOnline = FALSE;
|
||||
fDeleteIsMoveToTrash = FALSE;
|
||||
fGotNamespaces = FALSE;
|
||||
fPasswordVerifiedOnline = PR_FALSE;
|
||||
fDeleteIsMoveToTrash = PR_FALSE;
|
||||
fGotNamespaces = PR_FALSE;
|
||||
fNamespacesOverridable = PR_FALSE;
|
||||
}
|
||||
|
||||
nsIMAPHostInfo::~nsIMAPHostInfo()
|
||||
|
Loading…
x
Reference in New Issue
Block a user