зеркало из https://github.com/mozilla/gecko-dev.git
fix assertion failure in url-classifier when canonicalizing a URI with no host. b=387196, r=tony, a=schrep
This commit is contained in:
Родитель
cba701f55d
Коммит
d8ce4fd8cc
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче