Merge "Re-enable sanitizers in Rust modules."
diff --git a/service_vm/client_apk/Android.bp b/service_vm/client_apk/Android.bp
index e5084d4..415b563 100644
--- a/service_vm/client_apk/Android.bp
+++ b/service_vm/client_apk/Android.bp
@@ -29,9 +29,4 @@
rust_ffi {
name: "libservice_vm_client",
defaults: ["service_vm_client_defaults"],
- // TODO(b/250854486): Remove the sanitize section once the bug is fixed.
- sanitize: {
- address: false,
- hwaddress: false,
- },
}
diff --git a/vm_payload/Android.bp b/vm_payload/Android.bp
index 77dbb6b..ae0d1a6 100644
--- a/vm_payload/Android.bp
+++ b/vm_payload/Android.bp
@@ -23,11 +23,6 @@
"librpcbinder_rs",
"libvsock",
],
- // The sanitize section below fixes the fuzzer build in b/256166339.
- // TODO(b/250854486): Remove the sanitize section once the bug is fixed.
- sanitize: {
- address: false,
- },
}
// Rust wrappers round the C API for Rust clients.