diff options
author | lloyd <[email protected]> | 2008-11-10 19:48:28 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-11-10 19:48:28 +0000 |
commit | 148c4ecbd4116f9420229853b567cc17310b1cd1 (patch) | |
tree | b524196bbfc31bd4c3bc2b9b28b024c8cd530cd7 /src/libstate/libstate.cpp | |
parent | 25ba52f32245a1624cbf5dcd3ca748b7f09d9ab2 (diff) |
Use Algorithm_Factory and SCAN_Name for all hash lookups. Modify engines
accordingly.
Diffstat (limited to 'src/libstate/libstate.cpp')
-rw-r--r-- | src/libstate/libstate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstate/libstate.cpp b/src/libstate/libstate.cpp index bc0f6794b..1b32f2e86 100644 --- a/src/libstate/libstate.cpp +++ b/src/libstate/libstate.cpp @@ -227,7 +227,7 @@ void Library_State::initialize(const InitializerOptions& args, load_default_config(); - algorithm_factory = new Algorithm_Factory(get_mutex()); + algorithm_factory = new Algorithm_Factory; std::vector<Engine*> mod_engines = modules.engines(); for(u32bit j = 0; j != mod_engines.size(); ++j) |