This commit is contained in:
dbaron%fas.harvard.edu 2000-06-15 02:14:16 +00:00
Родитель d85bce1ecc
Коммит 1486d607d9
2 изменённых файлов: 10 добавлений и 10 удалений

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

@ -3501,7 +3501,7 @@ nsEditor::GetNextNode(nsIDOMNode *aParentNode,
if (NS_FAILED(result)) return result; if (NS_FAILED(result)) return result;
if (!IsDescendantOfBody(*aResultNode)) if (!IsDescendantOfBody(*aResultNode))
{ {
*aResultNode = nsnull; NS_RELEASE(*aResultNode); // assigns nsnull
return result; return result;
} }
if (!aEditableNode) return result; if (!aEditableNode) return result;
@ -3544,7 +3544,7 @@ nsEditor::GetPriorNode(nsIDOMNode *aCurrentNode,
if (NS_FAILED(result)) { return result; } if (NS_FAILED(result)) { return result; }
if (!IsDescendantOfBody(*aResultNode)) if (!IsDescendantOfBody(*aResultNode))
{ {
*aResultNode = nsnull; NS_RELEASE(*aResultNode); // assigns nsnull
return result; return result;
} }
if (PR_FALSE==aEditableNode) { if (PR_FALSE==aEditableNode) {
@ -3576,7 +3576,7 @@ nsEditor::GetPriorNode(nsIDOMNode *aCurrentNode,
if (NS_FAILED(result)) { return result; } if (NS_FAILED(result)) { return result; }
if (!IsDescendantOfBody(*aResultNode)) if (!IsDescendantOfBody(*aResultNode))
{ {
*aResultNode = nsnull; NS_RELEASE(*aResultNode); // assigns nsnull
return result; return result;
} }
if (PR_FALSE==aEditableNode) { if (PR_FALSE==aEditableNode) {
@ -3614,7 +3614,7 @@ nsEditor::GetNextNode(nsIDOMNode *aCurrentNode,
if (NS_FAILED(result)) { return result; } if (NS_FAILED(result)) { return result; }
if (!IsDescendantOfBody(*aResultNode)) if (!IsDescendantOfBody(*aResultNode))
{ {
*aResultNode = nsnull; NS_RELEASE(*aResultNode); // assigns nsnull
return result; return result;
} }
if (PR_FALSE==aEditableNode) { if (PR_FALSE==aEditableNode) {
@ -3647,7 +3647,7 @@ nsEditor::GetNextNode(nsIDOMNode *aCurrentNode,
if (NS_FAILED(result)) { return result; } if (NS_FAILED(result)) { return result; }
if (!IsDescendantOfBody(*aResultNode)) if (!IsDescendantOfBody(*aResultNode))
{ {
*aResultNode = nsnull; NS_RELEASE(*aResultNode); // assigns nsnull
return result; return result;
} }
if (PR_FALSE==aEditableNode) { if (PR_FALSE==aEditableNode) {

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

@ -3501,7 +3501,7 @@ nsEditor::GetNextNode(nsIDOMNode *aParentNode,
if (NS_FAILED(result)) return result; if (NS_FAILED(result)) return result;
if (!IsDescendantOfBody(*aResultNode)) if (!IsDescendantOfBody(*aResultNode))
{ {
*aResultNode = nsnull; NS_RELEASE(*aResultNode); // assigns nsnull
return result; return result;
} }
if (!aEditableNode) return result; if (!aEditableNode) return result;
@ -3544,7 +3544,7 @@ nsEditor::GetPriorNode(nsIDOMNode *aCurrentNode,
if (NS_FAILED(result)) { return result; } if (NS_FAILED(result)) { return result; }
if (!IsDescendantOfBody(*aResultNode)) if (!IsDescendantOfBody(*aResultNode))
{ {
*aResultNode = nsnull; NS_RELEASE(*aResultNode); // assigns nsnull
return result; return result;
} }
if (PR_FALSE==aEditableNode) { if (PR_FALSE==aEditableNode) {
@ -3576,7 +3576,7 @@ nsEditor::GetPriorNode(nsIDOMNode *aCurrentNode,
if (NS_FAILED(result)) { return result; } if (NS_FAILED(result)) { return result; }
if (!IsDescendantOfBody(*aResultNode)) if (!IsDescendantOfBody(*aResultNode))
{ {
*aResultNode = nsnull; NS_RELEASE(*aResultNode); // assigns nsnull
return result; return result;
} }
if (PR_FALSE==aEditableNode) { if (PR_FALSE==aEditableNode) {
@ -3614,7 +3614,7 @@ nsEditor::GetNextNode(nsIDOMNode *aCurrentNode,
if (NS_FAILED(result)) { return result; } if (NS_FAILED(result)) { return result; }
if (!IsDescendantOfBody(*aResultNode)) if (!IsDescendantOfBody(*aResultNode))
{ {
*aResultNode = nsnull; NS_RELEASE(*aResultNode); // assigns nsnull
return result; return result;
} }
if (PR_FALSE==aEditableNode) { if (PR_FALSE==aEditableNode) {
@ -3647,7 +3647,7 @@ nsEditor::GetNextNode(nsIDOMNode *aCurrentNode,
if (NS_FAILED(result)) { return result; } if (NS_FAILED(result)) { return result; }
if (!IsDescendantOfBody(*aResultNode)) if (!IsDescendantOfBody(*aResultNode))
{ {
*aResultNode = nsnull; NS_RELEASE(*aResultNode); // assigns nsnull
return result; return result;
} }
if (PR_FALSE==aEditableNode) { if (PR_FALSE==aEditableNode) {