mirror of https://github.com/google/oss-fuzz.git
Enable all formats for libarchive (#8731)
By default, raw and empty aren't enabled. Co-authored-by: Julien Voisin <jvoisin@google.com>
This commit is contained in:
parent
47e450b05a
commit
7b2df00056
|
@ -40,6 +40,8 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len) {
|
|||
|
||||
archive_read_support_filter_all(a);
|
||||
archive_read_support_format_all(a);
|
||||
archive_read_support_format_empty(a);
|
||||
archive_read_support_format_raw(a);
|
||||
|
||||
archive_read_set_options(a, "zip:ignorecrc32");
|
||||
|
||||
|
|
Loading…
Reference in New Issue