tor

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

commit 30f8b49d3b7917a15237724a0d0b913d27e876e2
parent 3741f9e524a2d3bd7239ca865d6169fd1e3dddb5
Author: rl1987 <rl1987@sdf.lonestar.org>
Date:   Fri, 12 Oct 2018 10:09:11 +0300

Silence SC2034 shellcheck checker for EXTRA_CHECKERS and NOISY_CHECKERS variables

Diffstat:
Mscripts/test/scan-build.sh | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/scripts/test/scan-build.sh b/scripts/test/scan-build.sh @@ -33,6 +33,7 @@ CHECKERS="\ -enable-checker security.insecureAPI.strcpy \ " +# shellcheck disable=SC2034 # These have high false-positive rates. EXTRA_CHECKERS="\ -enable-checker alpha.security.ArrayBoundV2 \ @@ -40,6 +41,7 @@ EXTRA_CHECKERS="\ -enable-checker alpha.core.CastSize \ " +# shellcheck disable=SC2034 # These don't seem to generate anything useful NOISY_CHECKERS="\ -enable-checker alpha.clone.CloneChecker \