mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-14 19:08:08 +00:00
cleanup minor issues
This commit is contained in:
@ -183,6 +183,8 @@ u32 count_bits_len(afl_state_t *afl, u8 *mem, u32 len) {
|
||||
u32 i = (len >> 2);
|
||||
u32 ret = 0;
|
||||
|
||||
(void)(afl);
|
||||
|
||||
if (len % 4) i++;
|
||||
|
||||
while (i--) {
|
||||
@ -241,6 +243,8 @@ u32 count_bytes_len(afl_state_t *afl, u8 *mem, u32 len) {
|
||||
u32 i = (len >> 2);
|
||||
u32 ret = 0;
|
||||
|
||||
(void)(afl);
|
||||
|
||||
while (i--) {
|
||||
|
||||
u32 v = *(ptr++);
|
||||
|
Reference in New Issue
Block a user