| Index: media/tools/player_wtl/movie.cc
|
| diff --git a/media/tools/player_wtl/movie.cc b/media/tools/player_wtl/movie.cc
|
| index 3f20ec68295703be6aa243c42e1e6cd8e86424d6..45bea9bd1b78fd8ae8ee5fbfa347c8cba88e0dd1 100644
|
| --- a/media/tools/player_wtl/movie.cc
|
| +++ b/media/tools/player_wtl/movie.cc
|
| @@ -66,7 +66,7 @@ bool Movie::Open(const wchar_t* url, VideoRendererBase* video_renderer) {
|
| // Open the file.
|
| std::string url_utf8 = WideToUTF8(string16(url));
|
| scoped_refptr<FileDataSource> data_source = new FileDataSource();
|
| - if (data_source->Initialize(url_utf8) != PIPELINE_OK) {
|
| + if (!data_source->Initialize(url_utf8)) {
|
| return false;
|
| }
|
|
|
|
|