From 1fcb78d629e9f919f98861c104638c52163f30c0 Mon Sep 17 00:00:00 2001 From: "sspitzer%netscape.com" Date: Fri, 26 Apr 2002 19:52:41 +0000 Subject: [PATCH] fix for regression bug #138647. turn off some code that was for #134743. until I figure it out. r/sr=bienvenu --- mailnews/addrbook/src/nsAbDirProperty.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mailnews/addrbook/src/nsAbDirProperty.cpp b/mailnews/addrbook/src/nsAbDirProperty.cpp index 3d2fa0f65d60..cab05801637a 100644 --- a/mailnews/addrbook/src/nsAbDirProperty.cpp +++ b/mailnews/addrbook/src/nsAbDirProperty.cpp @@ -62,6 +62,9 @@ nsAbDirProperty::nsAbDirProperty(void) nsAbDirProperty::~nsAbDirProperty(void) { +#if 0 + // this code causes a regression #138647 + // don't turn it on until you figure it out if (m_AddressList) { PRUint32 count; nsresult rv; @@ -71,6 +74,7 @@ nsAbDirProperty::~nsAbDirProperty(void) for (i = count - 1; i >= 0; i--) m_AddressList->RemoveElementAt(i); } +#endif } NS_IMPL_ISUPPORTS1(nsAbDirProperty,nsIAbDirectory)