diff options
Diffstat (limited to 'net/tools')
-rw-r--r-- | net/tools/crash_cache/crash_cache.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tools/crash_cache/crash_cache.cc b/net/tools/crash_cache/crash_cache.cc index dd56247..36c64e2 100644 --- a/net/tools/crash_cache/crash_cache.cc +++ b/net/tools/crash_cache/crash_cache.cc @@ -111,7 +111,7 @@ bool CreateTargetFolder(const std::wstring& path, RankCrashes action, *full_path = path; file_util::AppendToPath(full_path, folders[action]); - if (file_util::PathExists(FilePath::FromWStringHack(*full_path))) + if (file_util::PathExists(*full_path)) return false; return file_util::CreateDirectory(*full_path); |