fix assertion failure in url-classifier when canonicalizing a URI with no host. b=387196, r=tony, a=schrep

This commit is contained in:
dcamp@mozilla.com 2007-07-26 17:52:33 -07:00
Родитель cba701f55d
Коммит d8ce4fd8cc
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -225,7 +225,7 @@ nsUrlClassifierUtils::CleanupHostname(const nsACString & hostname,
}
// cut off trailing dots
while (_retval[_retval.Length() - 1] == '.') {
while (_retval.Length() > 0 && _retval[_retval.Length() - 1] == '.') {
_retval.SetLength(_retval.Length() - 1);
}
}