Bug 536230 - Crash or Hang @ [nsCookieService::RemoveCookieFromList(nsListIter const&)]. r=sdwilsh

This commit is contained in:
Dan Witte 2009-12-22 14:54:26 -08:00
Родитель d2ee43b89d
Коммит 5fd90963ae
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -2296,8 +2296,8 @@ public:
PRBool LessThan(const nsListIter &a, const nsListIter &b) const
{
// compare by entryclass pointer, then by index.
if (&a != &b)
return &a < &b;
if (a.entry != b.entry)
return a.entry < b.entry;
return a.index < b.index;
}