| Index: sdk/lib/io/path_impl.dart
|
| diff --git a/sdk/lib/io/path_impl.dart b/sdk/lib/io/path_impl.dart
|
| index 8e05d447da84ec9ac2f33d69d771b389af2d165d..58e7ce3abb261a3e45d08e72993310e0ab6a20fa 100644
|
| --- a/sdk/lib/io/path_impl.dart
|
| +++ b/sdk/lib/io/path_impl.dart
|
| @@ -189,7 +189,7 @@ class _Path implements Path {
|
| if (Platform.operatingSystem == 'windows') {
|
| String nativePath = _path;
|
| // Drop '/' before a drive letter.
|
| - if (nativePath.length > 3 &&
|
| + if (nativePath.length >= 3 &&
|
| nativePath.startsWith('/') &&
|
| nativePath[2] == ':') {
|
| nativePath = nativePath.substring(1);
|
|
|