diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-07-07 16:18:53 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-07-07 17:39:35 +0200 |
commit | c0ea02a6ffdecde662267b4178e6b60e73563ce1 (patch) | |
tree | eb244b631da9f86cf3b97ddd06c2bc9538a2c830 /tests | |
parent | bdd295bc2c8ec51357b4b43db17b50844acce540 (diff) |
Fixed heap-overflow if compiled with `--enable-tls-sigs`.fix/tls-sig-heap-overflow
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ossfuzz.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ossfuzz.sh b/tests/ossfuzz.sh index 5c622241b..37742b165 100644 --- a/tests/ossfuzz.sh +++ b/tests/ossfuzz.sh @@ -43,7 +43,7 @@ fi cd ndpi # Set LDFLAGS variable and `--with-only-libndpi` option as workaround for the # "missing dependencies errors" in the introspector build. See #8939 -LDFLAGS="-lpcap" ./autogen.sh --enable-fuzztargets --with-only-libndpi +LDFLAGS="-lpcap" ./autogen.sh --enable-fuzztargets --with-only-libndpi --enable-tls-sigs make -j$(nproc) # Copy fuzzers ls fuzz/fuzz* | grep -v "\." | while read i; do cp $i $OUT/; done |