diff options
-rw-r--r-- | compiler-rt/lib/sanitizer_common/sanitizer_linux_s390.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_linux_s390.cc b/compiler-rt/lib/sanitizer_common/sanitizer_linux_s390.cc index 27c3c7d086c..053fd174b2b 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_linux_s390.cc +++ b/compiler-rt/lib/sanitizer_common/sanitizer_linux_s390.cc @@ -142,6 +142,9 @@ static bool FixedCVE_2016_2143() { // 3.2.79+ is OK. if (minor == 2 && patch >= 79) return true; + // 3.12.58+ is OK. + if (minor == 12 && patch >= 58) + return true; // Otherwise, bad. return false; } else if (major == 4) { |