Remove the sanitizers from fmq_fuzzer

The fuzzer is built with the expected sanitizers in the fuzzing infra,
and sometimes we want to build and run it without sanitizers.

One case where AddressSanitizer fails to handle a crash and fails to
provide a backtrace prevents any useful debugging.

Test: fmq_fuzzer
Bug: 272625466
Change-Id: I8d4608bc8b7b461abc4ce909ae6b1472c038c93a
diff --git a/fuzzer/Android.bp b/fuzzer/Android.bp
index 0926c09..72d99d4 100644
--- a/fuzzer/Android.bp
+++ b/fuzzer/Android.bp
@@ -54,15 +54,4 @@
     },
 
     host_supported: true,
-
-    sanitize: {
-        scs: true,
-        cfi: true,
-        address: true,
-        memtag_heap: true,
-        // undefined behavior is expected
-        all_undefined: false,
-        // integer overflow is expected
-        integer_overflow: false,
-    },
 }