зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1275746 - nsNavHistory::AsciiHostNameFromHostString return empty string if host is empty r=mak
MozReview-Commit-ID: 3AKgNCXPKoU
This commit is contained in:
Родитель
19d84bf4da
Коммит
e703455691
|
@ -952,6 +952,10 @@ nsresult // static
|
|||
nsNavHistory::AsciiHostNameFromHostString(const nsACString& aHostName,
|
||||
nsACString& aAscii)
|
||||
{
|
||||
aAscii.Truncate();
|
||||
if (aHostName.IsEmpty()) {
|
||||
return NS_OK;
|
||||
}
|
||||
// To properly generate a uri we must provide a protocol.
|
||||
nsAutoCString fakeURL("http://");
|
||||
fakeURL.Append(aHostName);
|
||||
|
|
Загрузка…
Ссылка в новой задаче