Bug 937582. r=mcmanus

This commit is contained in:
Honza Bambas 2013-12-02 14:37:37 -05:00
parent 55a288a123
commit c736392bfc

View File

@ -473,7 +473,8 @@ nsPrefetchService::ProcessNextURI()
//
// if opening the channel fails, then just skip to the next uri
//
rv = mCurrentNode->OpenChannel();
nsRefPtr<nsPrefetchNode> node = mCurrentNode;
rv = node->OpenChannel();
}
while (NS_FAILED(rv));
}