Bug 917955 - Fix crash in PL_strncasecmp | nsCaseInsensitiveCStringComparator::operator()(char const*, char const*, unsigned int, unsigned int) during newsgroup subscribe. Correct sorting order of the filtered newsgroup list. r=jcranmer

This commit is contained in:
Alfred Peters 2013-10-01 09:54:14 -04:00
Родитель 4a5722d464
Коммит 5769828385
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -74,7 +74,7 @@ public:
bool LessThan(const nsCString &a, const nsCString &b) const
{
return Compare(a, b, nsCaseInsensitiveCStringComparator());
return Compare(a, b, nsCaseInsensitiveCStringComparator()) < 0;
}
};