Chromium Code Reviews| Index: runtime/bin/file_win.cc |
| diff --git a/runtime/bin/file_win.cc b/runtime/bin/file_win.cc |
| index 9076d7a2c411910184158d8c94c68a08e1658417..d32d1074c90f29b3053b52279a4bc1bb06110dc4 100644 |
| --- a/runtime/bin/file_win.cc |
| +++ b/runtime/bin/file_win.cc |
| @@ -114,7 +114,7 @@ File* File::Open(const char* name, FileOpenMode mode) { |
| return NULL; |
| } |
| } |
| - return new File(name, new FileHandle(fd)); |
| + return new File(new FileHandle(fd)); |
| } |