From a0d0dc4a9c4871fa20956c6c30eba6cbea04ef4e Mon Sep 17 00:00:00 2001 From: "naving%netscape.com" Date: Mon, 11 Jun 2001 22:55:04 +0000 Subject: [PATCH] whoops! backing out changes not part of the last checkin --- mailnews/local/src/nsPop3Protocol.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/mailnews/local/src/nsPop3Protocol.cpp b/mailnews/local/src/nsPop3Protocol.cpp index 1f965ba032b..940aadc2ddf 100644 --- a/mailnews/local/src/nsPop3Protocol.cpp +++ b/mailnews/local/src/nsPop3Protocol.cpp @@ -2519,13 +2519,10 @@ nsPop3Protocol::CommitState(PRBool remove_last_entry) Pop3MsgInfo* info = m_pop3ConData->msg_info + m_pop3ConData->last_accessed_msg; if (info && info->uidl && (m_pop3ConData->only_uidl == NULL) && - m_pop3ConData->newuidl) - { // check if newuidl has more than zero entries - if (m_pop3ConData->newuidl->nentries > 0) - { + m_pop3ConData->newuidl && m_pop3ConData->newuidl->nentries > 0) + { PRBool val = PL_HashTableRemove (m_pop3ConData->newuidl, info->uidl); PR_ASSERT(val); - } } } }