mirror of
https://github.com/microsoft/mimalloc.git
synced 2025-05-03 05:59:31 +03:00
Fix signedness warning
This commit is contained in:
parent
9f4bd23085
commit
f40cd9cd60
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|||
mi_heap_t * heap = mi_heap_new();
|
||||
void* allocation_ptrs[ALLOCATION_POINTERS] = {NULL};
|
||||
|
||||
for(int i = 0; i < size; i = i + FUZZING_OPERATION_DATA_SIZE) {
|
||||
for(size_t i = 0; i < size; i = i + FUZZING_OPERATION_DATA_SIZE) {
|
||||
fuzzing_operation_t operation = {0, {0,0}, FREE};
|
||||
init_fuzzing_operation(&operation, data + i, size - i);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue