| Index: chrome/browser/net/url_fixer_upper.cc
|
| diff --git a/chrome/browser/net/url_fixer_upper.cc b/chrome/browser/net/url_fixer_upper.cc
|
| index b276e02db1fa2822850ae3ca2c1dcb49b5a27023..8aee9213937ffd99e9d032a30b0cc62d51b1b692 100644
|
| --- a/chrome/browser/net/url_fixer_upper.cc
|
| +++ b/chrome/browser/net/url_fixer_upper.cc
|
| @@ -246,7 +246,7 @@ static void FixupPort(const string& text,
|
|
|
| // Look for non-digit in port and strip if found.
|
| string port(text, part.begin, part.len);
|
| - for (string::iterator i = port.begin(); i != port.end(); ) {
|
| + for (string::iterator i = port.begin(); i != port.end();) {
|
| if (IsAsciiDigit(*i))
|
| ++i;
|
| else
|
|
|