Revision c9808fa014aa88cc306705d308d1d9065d567ddc authored by Jonathan Nieder on 19 April 2020, 23:30:19 UTC, committed by Jonathan Nieder on 19 April 2020, 23:30:19 UTC
This merges up the security fix from v2.17.5.

Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
2 parent s 69fab82 + 9206d27
Raw File
.tsan-suppressions
# Suppressions for ThreadSanitizer (tsan).
#
# This file is used by setting the environment variable TSAN_OPTIONS to, e.g.,
# "suppressions=$(pwd)/.tsan-suppressions". Observe that relative paths such as
# ".tsan-suppressions" might not work.

# A static variable is written to racily, but we always write the same value, so
# in practice it (hopefully!) doesn't matter.
race:^want_color$
race:^transfer_debug$
back to top