fuzz: Fix aarch64 build on OSS-Fuzz
diff --git a/fuzz/oss-fuzz-build.sh b/fuzz/oss-fuzz-build.sh
index 151255b..3e8945f 100755
--- a/fuzz/oss-fuzz-build.sh
+++ b/fuzz/oss-fuzz-build.sh
@@ -18,6 +18,12 @@
     CONFIG='--with-zlib --with-lzma'
 fi
 
+# Workaround for a LeakSanitizer crashes,
+# see https://github.com/google/oss-fuzz/issues/11798.
+if [ "$ARCHITECTURE" = "aarch64" ]; then
+    export ASAN_OPTIONS=detect_leaks=0
+fi
+
 export V=1
 
 ./autogen.sh \