diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2020-02-16 11:28:37 +0000 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2020-02-19 22:41:06 +0000 |
commit | 12a2f377185a413b740460db36812de22ee2e041 (patch) | |
tree | f1eec49f16605e5cd0843278187578d087d7fb8f /ci | |
parent | eddcbfb109e592fdf39ea2c38c4d7ba183de3e34 (diff) |
util: Avoid potential uninitialized read in FormatISO8601DateTime(int64_t nTime) by checking gmtime_s/gmtime_r return value
Diffstat (limited to 'ci')
-rw-r--r-- | ci/test/00_setup_env_native_fuzz_with_valgrind.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/test/00_setup_env_native_fuzz_with_valgrind.sh b/ci/test/00_setup_env_native_fuzz_with_valgrind.sh index 6e1c400d50..45b13a669d 100644 --- a/ci/test/00_setup_env_native_fuzz_with_valgrind.sh +++ b/ci/test/00_setup_env_native_fuzz_with_valgrind.sh @@ -12,7 +12,7 @@ export NO_DEPENDS=1 export RUN_UNIT_TESTS=false export RUN_FUNCTIONAL_TESTS=false export RUN_FUZZ_TESTS=true -export FUZZ_TESTS_CONFIG="--exclude integer,parse_iso8601 --valgrind" +export FUZZ_TESTS_CONFIG="--valgrind" export GOAL="install" export BITCOIN_CONFIG="--enable-fuzz --with-sanitizers=fuzzer CC=clang-8 CXX=clang++-8" # Use clang-8, instead of default clang on bionic, which is clang-6 and does not come with libfuzzer on aarch64 |