mirror of https://github.com/google/oss-fuzz.git
Fix compile error in libarchive
This commit is contained in:
parent
555a80407b
commit
89ae65d516
|
@ -48,7 +48,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len) {
|
|||
while (archive_read_next_header(a, &entry) == ARCHIVE_OK) {
|
||||
while ((r = archive_read_data(a, data_buffer.data(),
|
||||
data_buffer.size()) > 0)
|
||||
;
|
||||
);
|
||||
if (r == ARCHIVE_FATAL)
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue