Deal with case where a load has failed.

git-svn-id: svn://10.0.0.236/trunk@48477 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
waterson%netscape.com 1999-09-21 01:41:29 +00:00
parent b231f9812a
commit 0d59690969

View File

@ -202,6 +202,10 @@ nsHTTPIndexParser::Init()
rv = mHTTPIndex->GetDataSource(getter_AddRefs(mDataSource));
if (NS_FAILED(rv)) return rv;
// No datasource. Uh oh. We won't be much use then.
if (! mDataSource)
return NS_ERROR_UNEXPECTED;
if (gRefCnt++ == 0) {
rv = nsServiceManager::GetService("component://netscape/rdf/rdf-service",
nsCOMTypeInfo<nsIRDFService>::GetIID(),
@ -377,6 +381,14 @@ nsHTTPIndexParser::OnStopRequest(nsIChannel* aChannel,
nsresult aStatus,
const PRUnichar* aErrorMsg)
{
// If mDirectory isn't set, then we should just bail. Either an
// error occurred and OnStartRequest() never got called, or
// something exploded in OnStartRequest().
if (! mDirectory)
return NS_OK;
// XXX Should we do anything different if aStatus != NS_OK?
if (mLine.Length() > 0)
ProcessOneLine();