Fix for bug 47497 (tree blocker). We should not pass rv to the call do_queryInterface in this case because failure here doesn't mean that the whole function failed. R=bienvenu

This commit is contained in:
ducarroz%netscape.com 2000-08-03 20:50:00 +00:00
Родитель 4b1c20f376
Коммит 2e9bc29abe
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -2346,7 +2346,7 @@ NS_IMETHODIMP nsMsgLocalMailFolder::EndCopy(PRBool copySucceeded)
nsCOMPtr<nsIMsgFolder> srcFolder;
srcFolder = do_QueryInterface(mCopyState->m_srcSupport, &rv);
srcFolder = do_QueryInterface(mCopyState->m_srcSupport);
if (srcFolder)
srcFolder->NotifyFolderEvent(mDeleteOrMoveMsgCompletedAtom);
ClearCopyState();