Bug 957431 follow-up - Handle the case where GetContent() returns null properly

This commit is contained in:
Ehsan Akhgari 2014-01-08 11:09:26 -05:00
Родитель 68f927d176
Коммит 24d85a4fea
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -137,7 +137,8 @@ Attr::GetContent() const
Element*
Attr::GetElement() const
{
return GetContent()->AsElement();
nsIContent* content = GetContent();
return content ? content->AsElement() : nullptr;
}
nsresult