Bug 330220 r=annie.sullivan Incorrect behavior when resorting after insertion.

Causes items not to resort, occasional crashes.
This commit is contained in:
brettw%gmail.com 2006-03-13 19:13:31 +00:00
parent 1216181f00
commit 47430fafa3

View File

@ -472,7 +472,7 @@ nsNavHistoryContainerResultNode::ReverseUpdateStats(PRInt32 aAccessCountChange)
SortComparator comparator = GetSortingComparator(sortMode);
int ourIndex = mParent->FindChild(this);
if (DoesChildNeedResorting(ourIndex, comparator)) {
if (mParent->DoesChildNeedResorting(ourIndex, comparator)) {
// prevent us from being destroyed when removed from the parent
nsRefPtr<nsNavHistoryContainerResultNode> ourLock = this;
nsNavHistoryContainerResultNode* ourParent = mParent;