Chromium Code Reviews| Index: runtime/bin/file_win.cc |
| diff --git a/runtime/bin/file_win.cc b/runtime/bin/file_win.cc |
| index c598380db140b948651da597483807531632a853..e1737b9efa6b6d68a8365207b915a63294f7d1b7 100644 |
| --- a/runtime/bin/file_win.cc |
| +++ b/runtime/bin/file_win.cc |
| @@ -162,7 +162,7 @@ bool File::IsAbsolutePath(const char* pathname) { |
| if (pathname == NULL) return false; |
| return (strlen(pathname) > 2) && |
| (pathname[1] == ':') && |
| - (pathname[2] == '\\'); |
| + (pathname[2] == '\\' || pathname[2] == '/'); |
| } |