Add additionalProperties=false

Change-Id: Iaec16b61ae8ec24c2013a310bf6a8d3a10e1f571
Signed-off-by: Ed Tanous <etanous@nvidia.com>
diff --git a/tests/meson.build b/tests/meson.build
index accce38..e86f26b 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -65,7 +65,7 @@
 # Fuzzing only works on linux at this moment.  osx clang doesn't have leak detector
 is_darwin = host_machine.system().startswith('darwin')
 if (cxx.get_id() == 'clang') and get_option('fuzz').allowed() and not is_darwin
-    sanitize = ['fuzzer', 'address', 'leak']
+    sanitize = ['fuzzer']
     fuzz_args = [
         '-fsanitize=' + ','.join(sanitize),
         '-DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION',