Merge "Re-enable sanitizers in Rust modules." am: 60d939f1a2 am: b4d3ee1c2d am: 3059e0ff50

Original change: https://android-review.googlesource.com/c/platform/packages/modules/Virtualization/+/2625979

Change-Id: I8b465e1b3358a8e2fd26a3694a1a9c0f8eab4c50
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
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.