Bug 865076, follow the XPCOM rules when using parent pointer, r=mccr8

--HG--
extra : rebase_source : c4d45f53bb15df09495714cb0955e3d2d9c684b6
This commit is contained in:
Olli Pettay 2013-04-24 21:09:25 +03:00
Родитель ebbca60340
Коммит bbfdc2db16
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1396,7 +1396,7 @@ nsINode::doInsertChildAt(nsIContent* aKid, uint32_t aIndex,
void
nsINode::Remove()
{
nsINode* parent = GetParentNode();
nsCOMPtr<nsINode> parent = GetParentNode();
if (!parent) {
return;
}