| Index: base/string_number_conversions.cc
|
| ===================================================================
|
| --- base/string_number_conversions.cc (revision 95764)
|
| +++ base/string_number_conversions.cc (working copy)
|
| @@ -220,7 +220,7 @@
|
|
|
| // Note: no performance difference was found when using template
|
| // specialization to remove this check in bases other than 16
|
| - if (traits::kBase == 16 && end - begin >= 2 && *begin == '0' &&
|
| + if (traits::kBase == 16 && end - begin > 2 && *begin == '0' &&
|
| (*(begin + 1) == 'x' || *(begin + 1) == 'X')) {
|
| begin += 2;
|
| }
|
|
|