From fd2e1a750b8a8e244eb783c2797422580fb9a30e Mon Sep 17 00:00:00 2001 From: pedro martelletto Date: Tue, 19 Oct 2021 11:13:36 +0200 Subject: [PATCH] [libfido2] re-enable MSAN (#6617) The dependencies built without MSAN (chiefly, libudev) aren't used by the fuzz targets, so it seems safe to bring MSAN back. Verified locally with 'python infra/helper.py'. --- projects/libfido2/project.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/projects/libfido2/project.yaml b/projects/libfido2/project.yaml index c9fb6ccfe..adf557bbc 100644 --- a/projects/libfido2/project.yaml +++ b/projects/libfido2/project.yaml @@ -10,8 +10,7 @@ auto_ccs: sanitizers: - address - undefined -# Disabled MSAN because of https://github.com/google/oss-fuzz/issues/6294 -# - memory + - memory fuzzing_engines: - libfuzzer -main_repo: 'https://github.com/Yubico/libfido2' \ No newline at end of file +main_repo: 'https://github.com/Yubico/libfido2'