Merge "Enable bounds sanitization in libavc."

This commit is contained in:
Ivan Lozano 2018-12-06 01:55:24 +00:00 committed by Android (Google) Code Review
commit f0cc0686dd

View file

@ -234,10 +234,12 @@ cc_library_static {
sanitize: {
integer_overflow: true,
misc_undefined: ["bounds"],
// Enable CFI if this becomes a shared library.
// cfi: true,
diag: {
integer_overflow: true,
misc_undefined: ["bounds"],
},
blacklist: "libavc_blacklist.txt",
},
@ -505,10 +507,12 @@ cc_library_static {
sanitize: {
integer_overflow: true,
misc_undefined: ["bounds"],
// Enable CFI if this becomes a shared library.
// cfi: true,
diag: {
integer_overflow: true,
misc_undefined: ["bounds"],
},
blacklist: "libavc_blacklist.txt",
},