зеркало из https://github.com/mozilla/gecko-dev.git
Bug 957431 follow-up - Handle the case where GetContent() returns null properly
This commit is contained in:
Родитель
68f927d176
Коммит
24d85a4fea
|
@ -137,7 +137,8 @@ Attr::GetContent() const
|
|||
Element*
|
||||
Attr::GetElement() const
|
||||
{
|
||||
return GetContent()->AsElement();
|
||||
nsIContent* content = GetContent();
|
||||
return content ? content->AsElement() : nullptr;
|
||||
}
|
||||
|
||||
nsresult
|
||||
|
|
Загрузка…
Ссылка в новой задаче