diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_linux_s390.cc b/compiler-rt/lib/sanitizer_common/sanitizer_linux_s390.cc index 27c3c7d086c5..053fd174b2bf 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) {