Bug 1875118 - Add null checks to DefaultURI::EqualsExceptRef r=necko-reviewers,kershaw

Differential Revision: https://phabricator.services.mozilla.com/D199474
This commit is contained in:
Valentin Gosu 2024-01-24 10:01:22 +00:00
Родитель 800a3741ad
Коммит 0ad25da35b
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -215,6 +215,9 @@ NS_IMETHODIMP DefaultURI::GetRef(nsACString& aRef) {
}
NS_IMETHODIMP DefaultURI::EqualsExceptRef(nsIURI* other, bool* _retval) {
if (!_retval || !other) {
return NS_ERROR_NULL_POINTER;
}
RefPtr<DefaultURI> otherUri;
nsresult rv = other->QueryInterface(kDefaultURICID, getter_AddRefs(otherUri));
if (NS_FAILED(rv)) {