forked from OSchip/llvm-project
[sanitizers] [SystemZ] Mark kernel 3.12.58+ as safe from CVE-2016-2143.
llvm-svn: 268046
This commit is contained in:
parent
0a36e301af
commit
14824b1c52
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue