From 5efdaa4c0c6fe92a70f16f6c006e4a5ea5843854 Mon Sep 17 00:00:00 2001 From: "sspitzer%netscape.com" Date: Mon, 12 Apr 1999 23:31:37 +0000 Subject: [PATCH] fix for bug #4977. curse unitialized variables --- mailnews/local/src/nsPop3Sink.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mailnews/local/src/nsPop3Sink.cpp b/mailnews/local/src/nsPop3Sink.cpp index 3df0a09741a6..bdd5f5f63f95 100644 --- a/mailnews/local/src/nsPop3Sink.cpp +++ b/mailnews/local/src/nsPop3Sink.cpp @@ -47,7 +47,7 @@ NS_IMPL_ISUPPORTS(nsPop3Sink, nsIPop3Sink::GetIID()); nsPop3Sink::nsPop3Sink() { - NS_INIT_REFCNT(); + NS_INIT_REFCNT(); m_authed = PR_FALSE; m_accountUrl = nsnull; m_biffState = 0; @@ -55,10 +55,12 @@ nsPop3Sink::nsPop3Sink() m_outputBuffer = nsnull; m_outputBufferSize = 0; m_mailDirectory = 0; - m_newMailParser = NULL; + m_newMailParser = NULL; #ifdef DEBUG m_fileCounter = 0; #endif + m_popServer = nsnull; + m_outFileStream = nsnull; } nsPop3Sink::~nsPop3Sink()