Commit b254d727 authored by vegorov@chromium.org's avatar vegorov@chromium.org

Fix compliance bug in decodeURI/decodeURIComponent.

Review URL: http://codereview.chromium.org/6349105

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@6630 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 84de4968
...@@ -205,7 +205,7 @@ function Decode(uri, reserved) { ...@@ -205,7 +205,7 @@ function Decode(uri, reserved) {
octets[0] = cc; octets[0] = cc;
if (k + 3 * (n - 1) >= uriLength) throw new $URIError("URI malformed"); if (k + 3 * (n - 1) >= uriLength) throw new $URIError("URI malformed");
for (var i = 1; i < n; i++) { for (var i = 1; i < n; i++) {
k++; if (uri.charAt(++k) != '%') throw new $URIError("URI malformed");
octets[i] = URIHexCharsToCharCode(uri.charAt(++k), uri.charAt(++k)); octets[i] = URIHexCharsToCharCode(uri.charAt(++k), uri.charAt(++k));
} }
index = URIDecodeOctets(octets, result, index); index = URIDecodeOctets(octets, result, index);
...@@ -412,4 +412,3 @@ function SetupURI() { ...@@ -412,4 +412,3 @@ function SetupURI() {
} }
SetupURI(); SetupURI();
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment