diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-10-21 10:09:51 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-10-21 10:17:18 +0100 |
commit | 937e7f8aa6bda1280abdea493583f4f959ee18e8 (patch) | |
tree | 5d88a15ed55bec94d672a6c5edca52053965ba0b /tests/fuzz | |
parent | Merge pull request #2601 (diff) | |
download | monero-937e7f8aa6bda1280abdea493583f4f959ee18e8.tar.xz |
Initialize openssl on startup
Diffstat (limited to 'tests/fuzz')
-rw-r--r-- | tests/fuzz/fuzzer.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/fuzz/fuzzer.cpp b/tests/fuzz/fuzzer.cpp index 3edf8cd19..756a8c847 100644 --- a/tests/fuzz/fuzzer.cpp +++ b/tests/fuzz/fuzzer.cpp @@ -29,6 +29,7 @@ #include <boost/program_options.hpp> #include "include_base_utils.h" #include "common/command_line.h" +#include "common/util.h" #include "fuzzer.h" #if (!defined(__clang__) || (__clang__ < 5)) @@ -48,6 +49,7 @@ using namespace boost::program_options; int run_fuzzer(int argc, const char **argv, Fuzzer &fuzzer) { TRY_ENTRY(); + tools::on_startup(); string_tools::set_module_name_and_folder(argv[0]); //set up logging options |