mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Backout rev fc99651e9bca
This commit is contained in:
parent
4ce6f49811
commit
349696172b
@ -617,7 +617,7 @@ nsAuthURLParser::ParseServerInfo(const char *serverinfo, PRInt32 serverinfoLen,
|
||||
PRInt32 err;
|
||||
*port = buf.ToInteger(&err);
|
||||
if (NS_FAILED(err))
|
||||
return NS_ERROR_MALFORMED_URI;
|
||||
*port = -1;
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
@ -1,29 +0,0 @@
|
||||
const Cc = Components.classes;
|
||||
const Ci = Components.interfaces;
|
||||
const Cr = Components.results;
|
||||
|
||||
function run_test() {
|
||||
var ios = Cc["@mozilla.org/network/io-service;1"].
|
||||
getService(Ci.nsIIOService);
|
||||
|
||||
var success = false;
|
||||
try {
|
||||
var newURI = ios.newURI("http://foo.com:invalid", null, null);
|
||||
}
|
||||
catch (e) {
|
||||
success = e.result == Cr.NS_ERROR_MALFORMED_URI;
|
||||
}
|
||||
if (!success)
|
||||
do_throw("We didn't throw NS_ERROR_MALFORMED_URI when creating a new URI with :invalid as a port");
|
||||
|
||||
success = false;
|
||||
newURI = ios.newURI("http://foo.com", null, null);
|
||||
try {
|
||||
newURI.spec = "http://foo.com:invalid";
|
||||
}
|
||||
catch (e) {
|
||||
success = e.result == Cr.NS_ERROR_MALFORMED_URI;
|
||||
}
|
||||
if (!success)
|
||||
do_throw("We didn't throw NS_ERROR_MALFORMED_URI when setting a spec of a URI with :invalid as a port");
|
||||
}
|
Loading…
Reference in New Issue
Block a user