Bug 1315796 Don't deref nullptr docshell in TabGroupOuter() validation code. r=smaug

This commit is contained in:
Ben Kelly 2016-11-07 14:22:12 -08:00
Родитель 7604d7195b
Коммит 134bb58051
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -14811,7 +14811,7 @@ nsGlobalWindow::TabGroupOuter()
if (!mIsValidatingTabGroup) {
mIsValidatingTabGroup = true;
// We only need to do this check if we aren't in the chrome tab group
if (GetDocShell()->ItemType() == nsIDocShellTreeItem::typeChrome) {
if (mIsChrome) {
MOZ_ASSERT(mTabGroup == TabGroup::GetChromeTabGroup());
} else {
// Sanity check that our tabgroup matches our opener or parent.