From 5338e12f9df48784709b512c8f174259074c4491 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 31 Mar 2022 13:17:34 -0500 Subject: [PATCH] Disable module linking in instantiate fuzzer (#3981) Support was removed from Wasmtime so there's no need to fuzz it any more. --- fuzz/fuzz_targets/instantiate.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/fuzz/fuzz_targets/instantiate.rs b/fuzz/fuzz_targets/instantiate.rs index ec8744b8fe..cd1df275a8 100644 --- a/fuzz/fuzz_targets/instantiate.rs +++ b/fuzz/fuzz_targets/instantiate.rs @@ -24,9 +24,6 @@ fn run(data: &[u8]) -> Result<()> { Timeout::None }; - // Enable module linking for this fuzz target specifically - config.module_config.config.module_linking_enabled = u.arbitrary()?; - let module = config.generate( &mut u, if let Timeout::None = timeout {