| Index: base/version.cc
|
| diff --git a/base/version.cc b/base/version.cc
|
| index 933356ea77c2f4f2faedb603fd0634b3be3c24e4..6318b350edcab328feb593a029534ae50b5b84b0 100644
|
| --- a/base/version.cc
|
| +++ b/base/version.cc
|
| @@ -31,8 +31,6 @@ bool ParseVersionNumbers(const std::string& version_str,
|
|
|
| for (std::vector<std::string>::const_iterator it = numbers.begin();
|
| it != numbers.end(); ++it) {
|
| - if (StartsWithASCII(*it, "+", false))
|
| - return false;
|
| int num;
|
| if (!StringToInt(*it, &num))
|
| return false;
|
| @@ -44,8 +42,8 @@ bool ParseVersionNumbers(const std::string& version_str,
|
| if (num > max)
|
| return false;
|
|
|
| - // This throws out leading zeros for the first item only.
|
| - if (it == numbers.begin() && IntToString(num) != *it)
|
| + // This throws out things like +3, or 032.
|
| + if (IntToString(num) != *it)
|
| return false;
|
|
|
| parsed->push_back(static_cast<uint16>(num));
|
|
|