Skip to content

Commit

Permalink
Update croaring_fuzzer.c
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire authored Oct 7, 2024
1 parent 8ae5ae8 commit 7d88f1e
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions fuzz/croaring_fuzzer.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ int bitmap64(const char *data, size_t size) {
}
return 0;
}
<<<<<<< HEAD

int LLVMFuzzerTestOneInput(const char *data, size_t size) {
if (size == 0) {
Expand All @@ -89,17 +88,4 @@ int LLVMFuzzerTestOneInput(const char *data, size_t size) {
} else {
return bitmap64(data + 1, size - 1);
}
=======
int LLVMFuzzerTestOneInput(const char *data, size_t size) {
int r;
r = bitmap32(data, size);
if (r) {
return r;
}
r = bitmap64(data, size);
if (r) {
return r;
}
return 0;
>>>>>>> 345433598c21c4e35f817a0cc01d023c949961d1
}

0 comments on commit 7d88f1e

Please sign in to comment.