commit f5bd852a06d6081b826fe20b7bf146afc178214e
Author: Dirk Lemstra <dirk@lemstra.org>
Date: Fri May 22 15:34:58 2026 +0200
Corrected the delete.
diff --git a/oss-fuzz/main.cc b/oss-fuzz/main.cc
index 26a162649..139bc03bc 100644
--- a/oss-fuzz/main.cc
+++ b/oss-fuzz/main.cc
@@ -59,7 +59,7 @@ public:
data=reinterpret_cast<const uint8_t *>(_data);
LLVMFuzzerTestOneInput(data,_size);
- delete _data;
+ delete[] _data;
}