| Index: net/disk_cache/simple/simple_index_file_posix.cc
|
| diff --git a/net/disk_cache/simple/simple_index_file_posix.cc b/net/disk_cache/simple/simple_index_file_posix.cc
|
| index 586699d2a8ebb8935a031f87d156fabdbf1d7f9d..df187555192c9c4c33f5b6f142acaa34039e50d6 100644
|
| --- a/net/disk_cache/simple/simple_index_file_posix.cc
|
| +++ b/net/disk_cache/simple/simple_index_file_posix.cc
|
| @@ -41,8 +41,8 @@ bool SimpleIndexFile::TraverseCacheDirectory(
|
| const std::string file_name(result->d_name);
|
| if (file_name == "." || file_name == "..")
|
| continue;
|
| - const base::FilePath file_path = cache_path.Append(
|
| - base::FilePath(file_name));
|
| + const base::FilePath file_path =
|
| + cache_path.Append(base::FilePath(file_name));
|
| entry_file_callback.Run(file_path);
|
| }
|
| PLOG(ERROR) << "readdir_r " << cache_path.value();
|
|
|