diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-03-21 22:26:13 +0100 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-03-21 22:26:13 +0100 |
commit | f08a3fedf684a52b7999b1305248812a21927b99 (patch) | |
tree | 0a7aa0a421919514015cb3b2a91591e7cbcd2cc4 /src/afl-fuzz-mutators.c | |
parent | 5cf342683414616d4cecc55155226cf77cb2e20f (diff) | |
download | afl++-f08a3fedf684a52b7999b1305248812a21927b99.tar.gz |
renamed UB to rand_below
Diffstat (limited to 'src/afl-fuzz-mutators.c')
-rw-r--r-- | src/afl-fuzz-mutators.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-fuzz-mutators.c b/src/afl-fuzz-mutators.c index 5312aec9..0d9d2a6f 100644 --- a/src/afl-fuzz-mutators.c +++ b/src/afl-fuzz-mutators.c @@ -186,7 +186,7 @@ void load_custom_mutator(afl_state_t *afl, const char *fn) { /* Initialize the custom mutator */ if (afl->mutator->afl_custom_init) - afl->mutator->afl_custom_init(afl, UR(afl, 0xFFFFFFFF)); + afl->mutator->afl_custom_init(afl, rand_below(afl, 0xFFFFFFFF)); } @@ -356,7 +356,7 @@ void load_custom_mutator_py(afl_state_t *afl, const char *module_name) { /* Initialize the custom mutator */ if (afl->mutator->afl_custom_init) - afl->mutator->afl_custom_init(afl, UR(afl, 0xFFFFFFFF)); + afl->mutator->afl_custom_init(afl, rand_below(afl, 0xFFFFFFFF)); } |