mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-16 03:48:08 +00:00
warn on _AFL and __AFL env vars
This commit is contained in:
@ -98,11 +98,11 @@ static sharedmem_t * shm_fuzz;
|
||||
/* Classify tuple counts. This is a slow & naive version, but good enough here.
|
||||
*/
|
||||
|
||||
#define TIMES4(x) x,x,x,x
|
||||
#define TIMES8(x) TIMES4(x),TIMES4(x)
|
||||
#define TIMES16(x) TIMES8(x),TIMES8(x)
|
||||
#define TIMES32(x) TIMES16(x),TIMES16(x)
|
||||
#define TIMES64(x) TIMES32(x),TIMES32(x)
|
||||
#define TIMES4(x) x, x, x, x
|
||||
#define TIMES8(x) TIMES4(x), TIMES4(x)
|
||||
#define TIMES16(x) TIMES8(x), TIMES8(x)
|
||||
#define TIMES32(x) TIMES16(x), TIMES16(x)
|
||||
#define TIMES64(x) TIMES32(x), TIMES32(x)
|
||||
static const u8 count_class_lookup[256] = {
|
||||
|
||||
[0] = 0,
|
||||
@ -116,6 +116,7 @@ static const u8 count_class_lookup[256] = {
|
||||
[128] = TIMES64(128)
|
||||
|
||||
};
|
||||
|
||||
#undef TIMES64
|
||||
#undef TIMES32
|
||||
#undef TIMES16
|
||||
|
Reference in New Issue
Block a user