[sanitizers] [SystemZ] Mark kernel 3.12.58+ as safe from CVE-2016-2143.

llvm-svn: 268046
This commit is contained in:
Marcin Koscielnicki 2016-04-29 14:59:19 +00:00
parent 0a36e301af
commit 14824b1c52
1 changed files with 3 additions and 0 deletions

View File

@ -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) {