зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
800a3741ad
Коммит
0ad25da35b
|
@ -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)) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче