[libarchive] fix wrongly placed parentheses in 89ae65d (#307)

This commit is contained in:
Martin Matuška 2017-01-22 15:22:08 +01:00 committed by Abhishek Arya
parent f858d8c7db
commit c7608cc5fe
1 changed files with 2 additions and 2 deletions

View File

@ -47,8 +47,8 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len) {
struct archive_entry *entry;
while (archive_read_next_header(a, &entry) == ARCHIVE_OK) {
while ((r = archive_read_data(a, data_buffer.data(),
data_buffer.size()) > 0)
);
data_buffer.size())) > 0)
;
if (r == ARCHIVE_FATAL)
break;
}