Bug 1712275 - avoid crashing on browsingcontext-less downloads for which we ask the user what to do with the file, r=nika

Differential Revision: https://phabricator.services.mozilla.com/D115714
This commit is contained in:
Gijs Kruitbosch 2021-05-21 21:59:59 +00:00
Родитель 6450216375
Коммит fb3d0ffc91
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1449,7 +1449,7 @@ NS_IMETHODIMP nsExternalAppHandler::GetContentLength(int64_t* aContentLength) {
NS_IMETHODIMP nsExternalAppHandler::GetBrowsingContextId(
uint64_t* aBrowsingContextId) {
*aBrowsingContextId = mBrowsingContext->Id();
*aBrowsingContextId = mBrowsingContext ? mBrowsingContext->Id() : 0;
return NS_OK;
}