Bug 1663491 - Fix assert in SessionHistoryEntry::AddChild to deal with adding null. r=smaug

Depends on D89422

Differential Revision: https://phabricator.services.mozilla.com/D89423
This commit is contained in:
Peter Van der Beken 2020-09-08 12:52:40 +00:00
Родитель 8f72952fc3
Коммит 5389d9504c
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -946,7 +946,7 @@ NS_IMETHODIMP
SessionHistoryEntry::AddChild(nsISHEntry* aChild, int32_t aOffset,
bool aUseRemoteSubframes) {
nsCOMPtr<SessionHistoryEntry> child = do_QueryInterface(aChild);
MOZ_ASSERT(child);
MOZ_ASSERT_IF(aChild, child);
AddChild(child, aOffset, aUseRemoteSubframes);
return NS_OK;