Skip to content

Commit

Permalink
1.91b
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-huet committed Sep 4, 2015
1 parent bdcbefb commit de7507c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 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 = 1.90b
VERSION = 1.91b

PREFIX ?= /usr/local
BIN_PATH = $(PREFIX)/bin
Expand Down
9 changes: 8 additions & 1 deletion docs/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,16 @@ Want to stay in the loop on major new features? Join our mailing list by
sending a mail to <[email protected]>.

Not sure if you should upgrade? The lowest currently recommended version
is 1.76b. If you're stuck on an earlier release, it's strongly advisable
is 1.90b. If you're stuck on an earlier release, it's strongly advisable
to get on with the times.

--------------
Version 1.91b:
--------------

- Another fix to make 1.90b actually work properly with C++ (d'oh).
Problem spotted by Daniel Lockyer.

--------------
Version 1.90b:
--------------
Expand Down
4 changes: 2 additions & 2 deletions llvm_mode/afl-clang-fast.c
Original file line number Diff line number Diff line change
Expand Up @@ -180,13 +180,13 @@ static void edit_params(u32 argc, char** argv) {

cc_params[cc_par_cnt++] = "-D__AFL_LOOP(_A)="
"({ static volatile char *_B __attribute__((used)); "
" _B = \"" PERSIST_SIG "\"; "
" _B = (char*)\"" PERSIST_SIG "\"; "
"int __afl_persistent_loop(unsigned int); "
"__afl_persistent_loop(_A); })";

cc_params[cc_par_cnt++] = "-D__AFL_INIT()="
"do { static volatile char *_A __attribute__((used)); "
" _A = \"" DEFER_SIG "\"; "
" _A = (char*)\"" DEFER_SIG "\"; "
"void __afl_manual_init(void); "
"__afl_manual_init(); } while (0)";

Expand Down

0 comments on commit de7507c

Please sign in to comment.