diff options
author | hexcxoder- <heikoi@hexco.de> | 2019-07-20 15:04:07 +0200 |
---|---|---|
committer | hexcxoder- <heikoi@hexco.de> | 2019-07-20 15:04:07 +0200 |
commit | 302e71779095357d1f04e97085a6db9dd10530ae (patch) | |
tree | d9e725c02c1106bbf51456ed3e90d2f19fc78681 /afl-tmin.c | |
parent | 1d1d0d9b6fac47ca460f9dc03d189aefa11bfe68 (diff) | |
download | afl++-302e71779095357d1f04e97085a6db9dd10530ae.tar.gz |
better rely on compiler for size information
Diffstat (limited to 'afl-tmin.c')
-rw-r--r-- | afl-tmin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/afl-tmin.c b/afl-tmin.c index d6fd27fc..f62a144f 100644 --- a/afl-tmin.c +++ b/afl-tmin.c @@ -671,7 +671,7 @@ next_del_blksize: alpha_del1 = 0; syms_removed = 0; - memset(alpha_map, 0, 256 * sizeof(u32)); + memset(alpha_map, 0, sizeof(alpha_map)); for (i = 0; i < in_len; i++) { if (!alpha_map[in_data[i]]) alpha_size++; |