diff options
-rw-r--r-- | src/libstate/global_rng.cpp | 1 | ||||
-rw-r--r-- | src/libstate/libstate.cpp | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/libstate/global_rng.cpp b/src/libstate/global_rng.cpp index c5dcaab00..a79c72c00 100644 --- a/src/libstate/global_rng.cpp +++ b/src/libstate/global_rng.cpp @@ -6,7 +6,6 @@ */ #include <botan/libstate.h> -#include <botan/internal/mutex.h> #if defined(BOTAN_HAS_RANDPOOL) #include <botan/randpool.h> diff --git a/src/libstate/libstate.cpp b/src/libstate/libstate.cpp index e37617c94..7b0f4c417 100644 --- a/src/libstate/libstate.cpp +++ b/src/libstate/libstate.cpp @@ -237,7 +237,7 @@ void Library_State::initialize() load_default_config(); - m_algorithm_factory = new Algorithm_Factory(*mutex_factory); + m_algorithm_factory = new Algorithm_Factory(); #if defined(BOTAN_HAS_ENGINE_GNU_MP) algorithm_factory().add_engine(new GMP_Engine); |