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

Causes items not to resort, occasional crashes.

Original committer: brettw%gmail.com
Original revision: 1.60
Original date: 2006/03/13 19:13:31
This commit is contained in:
benjamin%smedbergs.us 2006-07-18 18:32:01 +00:00
Родитель 1c71f3cc3a
Коммит 7400aee9b9
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -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;