diff options
author | eldritch horrors <pennae@lix.systems> | 2024-03-17 23:52:11 +0100 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-03-19 06:09:42 -0600 |
commit | d9a83886f9aed4d61d9d18894637f883491b384b (patch) | |
tree | d98087be032d6af63798d19270efa9bc9a46fa9f /src/libstore/globals.cc | |
parent | 4050245faab80dad6cedaa13e481278456a139c0 (diff) |
libutil: remove exception handling workingness check
within lix itself this problem is caught by the test suite. outside of
lix itself three cases can be had: either the problem is fully inside
lix libs, fully inside user code, or it exists at the boundary. the
first is caught by the test suite, the second isn't caught at all, and
the third is something lix should not be responsible for.
Change-Id: I95aa35d8cb6f0ef5816a2941c467bc0c15916063
Diffstat (limited to 'src/libstore/globals.cc')
-rw-r--r-- | src/libstore/globals.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libstore/globals.cc b/src/libstore/globals.cc index 14437e2f0..b7397da1a 100644 --- a/src/libstore/globals.cc +++ b/src/libstore/globals.cc @@ -402,8 +402,6 @@ void assertLibStoreInitialized() { void initLibStore() { - initLibUtil(); - if (sodium_init() == -1) throw Error("could not initialise libsodium"); |