]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Don’t log stat error in Util::read_file
authorJoel Rosdahl <joel@rosdahl.net>
Tue, 8 Sep 2020 18:09:52 +0000 (20:09 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Tue, 8 Sep 2020 18:31:54 +0000 (20:31 +0200)
An error is signalled via an exception so let’s make it up to the caller
whether to log or not.

src/Util.cpp

index 78e3d84452920720e2e662cd94eb3af0885f83da..bdb1639565d5a8cb9756d5d846c291a458d9a7c2 100644 (file)
@@ -1090,7 +1090,7 @@ std::string
 read_file(const std::string& path, size_t size_hint)
 {
   if (size_hint == 0) {
-    auto stat = Stat::stat(path, Stat::OnError::log);
+    auto stat = Stat::stat(path);
     if (!stat) {
       throw Error(strerror(errno));
     }