зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
6450216375
Коммит
fb3d0ffc91
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче