From a33f3bf98b1b4aed3bfa2aba4ff62b9b541f595a Mon Sep 17 00:00:00 2001 From: "dietrich%mozilla.com" Date: Fri, 19 Oct 2007 00:10:49 +0000 Subject: [PATCH] Bug 398295 When I delete multiple items in the Bookmarks Organizer, dozens of assertions appear (re-landing) git-svn-id: svn://10.0.0.236/trunk@237869 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/browser/components/places/content/treeView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/browser/components/places/content/treeView.js b/mozilla/browser/components/places/content/treeView.js index a26ca834948..5fef90fe344 100644 --- a/mozilla/browser/components/places/content/treeView.js +++ b/mozilla/browser/components/places/content/treeView.js @@ -69,7 +69,7 @@ PlacesTreeView.prototype = { }, _ensureValidRow: function PTV__ensureValidRow(aRow) { - if (aRow < 0 || aRow > this._visibleElements.length) + if (aRow < 0 || aRow >= this._visibleElements.length) throw Cr.NS_ERROR_INVALID_ARG; },