Browse Source

fuzz: Move init_protocol_warning_severity_level() into global_init()

This is needed so llvm_fuzz will see it too.
Nick Mathewson 6 years ago
parent
commit
953c769a86
1 changed files with 3 additions and 2 deletions
  1. 3 2
      src/test/fuzz/fuzzing_common.c

+ 3 - 2
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));