| Index: webkit/fileapi/file_system_context.cc
|
| diff --git a/webkit/fileapi/file_system_context.cc b/webkit/fileapi/file_system_context.cc
|
| index 45615152c80da2b3852f35a8d8db43fba5836bbe..7bf6399cd3171f5d0e792ed41b340fbaf07b043a 100644
|
| --- a/webkit/fileapi/file_system_context.cc
|
| +++ b/webkit/fileapi/file_system_context.cc
|
| @@ -216,9 +216,13 @@ FileSystemOperation* FileSystemContext::CreateFileSystemOperation(
|
| return NULL;
|
| }
|
|
|
| + PlatformFileError fs_error = base::PLATFORM_FILE_OK;
|
| + FileSystemOperation* operation =
|
| + mount_point_provider->CreateFileSystemOperation(url, this, &fs_error);
|
| +
|
| if (error_code)
|
| - *error_code = base::PLATFORM_FILE_OK;
|
| - return mount_point_provider->CreateFileSystemOperation(url, this);
|
| + *error_code = fs_error;
|
| + return operation;
|
| }
|
|
|
| webkit_blob::FileStreamReader* FileSystemContext::CreateFileStreamReader(
|
|
|