bubble LoadURL's errors up through rv

This commit is contained in:
alecf%netscape.com 1999-03-20 02:02:31 +00:00
Родитель e0688a039a
Коммит 06dcc6a614
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -65,7 +65,7 @@ nsresult nsMailboxService::ParseMailbox(const nsFileSpec& aMailboxPath, nsIStrea
nsMailboxProtocol * protocol = new nsMailboxProtocol(url);
if (protocol)
protocol->LoadURL(url, nsnull /* no consumers for this type of url */);
rv = protocol->LoadURL(url, nsnull /* no consumers for this type of url */);
if (aURL)
*aURL = url;
@ -109,7 +109,7 @@ nsresult nsMailboxService::DisplayMessage(const nsFileSpec& aMailboxPath, nsMsgK
// create a protocol instance to run the url..
nsMailboxProtocol * protocol = new nsMailboxProtocol(url);
if (protocol)
protocol->LoadURL(url, aDisplayConsumer);
rv = protocol->LoadURL(url, aDisplayConsumer);
if (aURL)
*aURL = url;