Bug 1700076 - Allow nsHostResolver::FlushCache to clear Type records from the cache r=kershaw,necko-reviewers

Differential Revision: https://phabricator.services.mozilla.com/D109588
This commit is contained in:
Valentin Gosu 2021-04-07 07:29:54 +00:00
Родитель ca325c9add
Коммит 5094c19438
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -803,8 +803,13 @@ void nsHostResolver::FlushCache(bool aTrrToo) {
if (record->isInList()) {
record->remove();
}
LOG(("Removing (%s) Addr record from mRecordDB", record->host.get()));
iter.Remove();
}
} else if (aTrrToo) {
// remove by type records
LOG(("Removing (%s) type record from mRecordDB", record->host.get()));
iter.Remove();
}
}
}