diff options
author | Toni <matzeton@googlemail.com> | 2023-07-07 18:52:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-07 18:52:06 +0200 |
commit | 859d9ea3c33c3ed54c159658a94381fdd4e7eccb (patch) | |
tree | 188afcb733e2e3f5168306e5556f183d81855070 /tests/ossfuzz.sh | |
parent | 72814bed338f762dc29b94064c1ecffd2cb3f228 (diff) |
Fixed heap-overflow if compiled with `--enable-tls-sigs`. (#2038)
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'tests/ossfuzz.sh')
-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 |