зеркало из https://github.com/mozilla/gecko-dev.git
Bug 336984 Useless null check of aNewLeftNode in nsEditor::SplitNode
r=neil sr=neil
This commit is contained in:
Родитель
32fd7a86ea
Коммит
8f7341d7e8
|
@ -1421,7 +1421,7 @@ nsEditor::SplitNode(nsIDOMNode * aNode,
|
|||
listener = (nsIEditActionListener *)mActionListeners->ElementAt(i);
|
||||
if (listener)
|
||||
{
|
||||
nsIDOMNode *ptr = (aNewLeftNode) ? *aNewLeftNode : 0;
|
||||
nsIDOMNode *ptr = *aNewLeftNode;
|
||||
listener->DidSplitNode(aNode, aOffset, ptr, result);
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче