зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1572252 - Properly null-check a variable in debug-only code.
Differential Revision: https://phabricator.services.mozilla.com/D43054 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
409e5b7a75
Коммит
cf63cf46ad
|
@ -1503,8 +1503,9 @@ void Gecko_ReleasensIReferrerInfoArbitraryThread(nsIReferrerInfo* aPtr) {
|
|||
void Gecko_nsIReferrerInfo_Debug(nsIReferrerInfo* aReferrerInfo,
|
||||
nsCString* aOut) {
|
||||
if (aReferrerInfo) {
|
||||
nsCOMPtr<nsIURI> referrer = aReferrerInfo->GetComputedReferrer();
|
||||
*aOut = referrer->GetSpecOrDefault();
|
||||
if (nsCOMPtr<nsIURI> referrer = aReferrerInfo->GetComputedReferrer()) {
|
||||
*aOut = referrer->GetSpecOrDefault();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче