tor

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

commit 5dce134fbb4310704c6e9dcffca61221671d6e47
parent 5bee5fbac71f3534b8e1a19c742c2a61f686ca9d
Author: Nick Mathewson <nickm@torproject.org>
Date:   Mon, 30 Oct 2017 17:05:26 -0400

Initialize the mock options in the fuzzing code

Fixes bug 24082; bugfix on 0.3.0.3-alpha.  Found by Brian Carpenter.

Diffstat:
Achanges/bug24082 | 3+++
Msrc/test/fuzz/fuzzing_common.c | 2+-
2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/changes/bug24082 b/changes/bug24082 @@ -0,0 +1,3 @@ + o Minor bugfixes (testing): + - Fix a spurious fuzzing-only use of an uninitialized value. + Found by Brian Carpenter. Fixes bug 24082; bugfix on 0.3.0.3-alpha. diff --git a/src/test/fuzz/fuzzing_common.c b/src/test/fuzz/fuzzing_common.c @@ -107,7 +107,7 @@ global_init(void) configure_backtrace_handler(get_version()); /* set up the options. */ - mock_options = tor_malloc(sizeof(or_options_t)); + mock_options = tor_malloc_zero(sizeof(or_options_t)); MOCK(get_options, mock_get_options); /* Make BUG() and nonfatal asserts crash */