fix top crash in nsPop3Protocol::SendRetr, from branch, sr=mscott

This commit is contained in:
bienvenu%netscape.com 2000-10-25 14:59:38 +00:00
Родитель cea1265120
Коммит e75b9cd84a
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -2095,7 +2095,8 @@ nsPop3Protocol::SendRetr()
getter_Copies(finalString)); getter_Copies(finalString));
NS_ASSERTION(NS_SUCCEEDED(rv), "couldn't format string"); NS_ASSERTION(NS_SUCCEEDED(rv), "couldn't format string");
m_statusFeedback->ShowStatusString(finalString); if (m_statusFeedback)
m_statusFeedback->ShowStatusString(finalString);
} }
} }