Bug 1539208 - P1 - Return an error when the Reponse object is null'd; r=mayhemer

Differential Revision: https://phabricator.services.mozilla.com/D25228

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Tom Tung 2019-03-28 15:27:49 +00:00
Родитель 126dd4fe64
Коммит 33a688e689
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1048,7 +1048,7 @@ FetchDriver::OnStartRequest(nsIRequest* aRequest) {
// Fail to generate a paddingInfo for opaque response.
MOZ_DIAGNOSTIC_ASSERT(mResponse->Type() == ResponseType::Opaque);
FailWithNetworkError(NS_ERROR_UNEXPECTED);
return rv;
return NS_ERROR_UNEXPECTED;
}
// From "Main Fetch" step 19: SRI-part1.