Skip to content

Commit

Permalink
2.12b
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-huet committed May 21, 2016
1 parent 12eeeea commit dcb90e0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#

PROGNAME = afl
VERSION = 2.11b
VERSION = 2.12b

PREFIX ?= /usr/local
BIN_PATH = $(PREFIX)/bin
Expand Down
2 changes: 1 addition & 1 deletion afl-tmin.c
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ static void minimize(char** argv) {
alpha_del1 = 0;
syms_removed = 0;

memset(alpha_map, 0, 256);
memset(alpha_map, 0, 256 * sizeof(u32));

for (i = 0; i < in_len; i++) {
if (!alpha_map[in_data[i]]) alpha_size++;
Expand Down
7 changes: 7 additions & 0 deletions docs/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ Not sure if you should upgrade? The lowest currently recommended version
is 2.07b. If you're stuck on an earlier release, it's strongly advisable
to get on with the times.

--------------
Version 2.12b:
--------------

- Fixed a minor issue in afl-tmin that can make alphabet minimization less
efficient during passes > 1. Spotted by Daniel Binderman.

--------------
Version 2.11b:
--------------
Expand Down
1 change: 1 addition & 0 deletions docs/README
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,7 @@ bug reports, or patches from:
Guillaume Endignoux ilovezfs
Daniel Godas-Lopez Franjo Ivancic
Austin Seipp Daniel Komaromy
Daniel Binderman

Thank you!

Expand Down

0 comments on commit dcb90e0

Please sign in to comment.