5
5
6
6
# -fsanitize=integer suppressions
7
7
# ===============================
8
- # Dependencies
9
- # ------------
10
8
# Suppressions in dependencies that are developed outside this repository.
9
+ # ------------
10
+
11
11
unsigned-integer-overflow:*/include/c++/
12
12
unsigned-integer-overflow:FuzzedDataProvider::ConsumeIntegralInRange
13
13
unsigned-integer-overflow:leveldb/
@@ -34,12 +34,15 @@ shift-base:leveldb/
34
34
shift-base:minisketch/
35
35
shift-base:secp256k1/
36
36
shift-base:test/fuzz/crypto_diff_fuzz_chacha20.cpp
37
+
38
+ # Suppressions in code developed inside this repository.
39
+ # ------------
37
40
# Unsigned integer overflow occurs when the result of an unsigned integer
38
41
# computation cannot be represented in its type. Unlike signed integer overflow,
39
42
# this is not undefined behavior, but it is often unintentional. The list below
40
43
# contains files in which we expect unsigned integer overflows to occur. The
41
- # list is used to suppress -fsanitize=integer warnings when running our CI UBSan
42
- # job .
44
+ # list is used to suppress -fsanitize=integer warnings when running UBSan
45
+ # locally or in CI .
43
46
unsigned-integer-overflow:arith_uint256.h
44
47
unsigned-integer-overflow:CBloomFilter::Hash
45
48
unsigned-integer-overflow:CRollingBloomFilter::insert
@@ -61,7 +64,6 @@ implicit-integer-sign-change:SetStdinEcho
61
64
implicit-integer-sign-change:compressor.h
62
65
implicit-integer-sign-change:crypto/
63
66
implicit-integer-sign-change:TxConfirmStats::removeTx
64
- implicit-integer-sign-change:verify_flags
65
67
implicit-integer-sign-change:EvalScript
66
68
implicit-signed-integer-truncation:crypto/
67
69
implicit-unsigned-integer-truncation:crypto/
0 commit comments