diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-06-13 15:37:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-13 15:37:38 +0200 |
commit | 95eccfd5dba1ea641b461ec52ee1321d22085b5b (patch) | |
tree | 6c39ac718fdad55d6346f2c252a880df2aff91f5 /src | |
parent | 03226aa0532a34d705a5d2d4d792fc000af3dd88 (diff) | |
parent | 754cd53faf12a9e900c7ef6cefa4a798fccea573 (diff) |
Merge pull request #6648 from andersk/missing-rethrow
Add missing rethrows in conditional exception handlers
Diffstat (limited to 'src')
-rw-r--r-- | src/libstore/gc.cc | 2 | ||||
-rw-r--r-- | src/libstore/local-binary-cache-store.cc | 1 | ||||
-rw-r--r-- | src/nix-collect-garbage/nix-collect-garbage.cc | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/src/libstore/gc.cc b/src/libstore/gc.cc index f65fb1b2e..d58ed78b1 100644 --- a/src/libstore/gc.cc +++ b/src/libstore/gc.cc @@ -135,6 +135,7 @@ void LocalStore::addTempRoot(const StorePath & path) state->fdRootsSocket.close(); goto restart; } + throw; } } @@ -153,6 +154,7 @@ void LocalStore::addTempRoot(const StorePath & path) state->fdRootsSocket.close(); goto restart; } + throw; } catch (EndOfFile & e) { debug("GC socket disconnected"); state->fdRootsSocket.close(); diff --git a/src/libstore/local-binary-cache-store.cc b/src/libstore/local-binary-cache-store.cc index a3c3e4806..ba4416f6d 100644 --- a/src/libstore/local-binary-cache-store.cc +++ b/src/libstore/local-binary-cache-store.cc @@ -69,6 +69,7 @@ protected: } catch (SysError & e) { if (e.errNo == ENOENT) throw NoSuchBinaryCacheFile("file '%s' does not exist in binary cache", path); + throw; } } diff --git a/src/nix-collect-garbage/nix-collect-garbage.cc b/src/nix-collect-garbage/nix-collect-garbage.cc index af6f1c88c..e413faffe 100644 --- a/src/nix-collect-garbage/nix-collect-garbage.cc +++ b/src/nix-collect-garbage/nix-collect-garbage.cc @@ -37,6 +37,7 @@ void removeOldGenerations(std::string dir) link = readLink(path); } catch (SysError & e) { if (e.errNo == ENOENT) continue; + throw; } if (link.find("link") != std::string::npos) { printInfo(format("removing old generations of profile %1%") % path); |