diff options
author | Marcin Koscielnicki <koriakin@0x04.net> | 2016-04-29 14:59:19 +0000 |
---|---|---|
committer | Marcin Koscielnicki <koriakin@0x04.net> | 2016-04-29 14:59:19 +0000 |
commit | 14824b1c52b07b10ba6a9545f7f50bd72673b69c (patch) | |
tree | 2c0d4ac7fcbc22b29adad37c07949c2ce34e81ac | |
parent | 0a36e301af6697dcc987ad04227beb0ace3c64ca (diff) | |
download | bcm5719-llvm-14824b1c52b07b10ba6a9545f7f50bd72673b69c.tar.gz bcm5719-llvm-14824b1c52b07b10ba6a9545f7f50bd72673b69c.zip |
[sanitizers] [SystemZ] Mark kernel 3.12.58+ as safe from CVE-2016-2143.
llvm-svn: 268046
-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) { |