tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 953c769a867415f81dc016f30575dee6c0b2cb43
parent eafa252b26ecf83a8a48e7e19a3315e1d2983186
Author: Nick Mathewson <nickm@torproject.org>
Date:   Fri,  2 Feb 2018 17:42:23 -0500

fuzz: Move init_protocol_warning_severity_level() into global_init()

This is needed so llvm_fuzz will see it too.

Diffstat:
Msrc/test/fuzz/fuzzing_common.c | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/test/fuzz/fuzzing_common.c b/src/test/fuzz/fuzzing_common.c @@ -110,6 +110,9 @@ global_init(void) /* Make BUG() and nonfatal asserts crash */ tor_set_failed_assertion_callback(abort); + + /* Make protocol warnings handled correctly. */ + init_protocol_warning_severity_level(); } #ifdef LLVM_FUZZ @@ -152,8 +155,6 @@ main(int argc, char **argv) } } - init_protocol_warning_severity_level(); - { log_severity_list_t s; memset(&s, 0, sizeof(s));