зеркало из https://github.com/mozilla/pjs.git
fixes bug 168988 "HTTP should reject URLs that lack a hostname."
r=dougt sr=rpotts
This commit is contained in:
Родитель
694f16de19
Коммит
566026e74b
|
@ -139,6 +139,10 @@ nsHttpChannel::Init(nsIURI *uri,
|
|||
rv = mURI->GetAsciiHost(host);
|
||||
if (NS_FAILED(rv)) return rv;
|
||||
|
||||
// reject the URL if it doesn't specify a host
|
||||
if (host.IsEmpty())
|
||||
return NS_ERROR_MALFORMED_URI;
|
||||
|
||||
rv = mURI->GetPort(&port);
|
||||
if (NS_FAILED(rv)) return rv;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче