Skip to content

Commit

Permalink
1.83b
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-huet committed Jun 15, 2015
1 parent a79d5c6 commit 1a57266
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 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.82b
VERSION = 1.83b

PREFIX ?= /usr/local
BIN_PATH = $(PREFIX)/bin
Expand Down
4 changes: 2 additions & 2 deletions afl-cmin
Original file line number Diff line number Diff line change
Expand Up @@ -337,8 +337,8 @@ echo

echo "[*] Sorting trace sets (this may take a while)..."

ls "$IN_DIR" | sed "s#^#$TRACE_DIR/#" | xargs -d '\n' -n 1 cat | sort | \
uniq -c | sort -n >"$TRACE_DIR/.all_uniq"
ls "$IN_DIR" | sed "s#^#$TRACE_DIR/#" | tr '\n' '\0' | xargs -0 -n 1 cat | \
sort | uniq -c | sort -n >"$TRACE_DIR/.all_uniq"

TUPLE_COUNT=$((`grep -c . "$TRACE_DIR/.all_uniq"`))

Expand Down
10 changes: 10 additions & 0 deletions docs/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,16 @@ 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
to get on with the times.

--------------
Version 1.83b:
--------------

- Fixed a problem with xargs -d on non-Linux systems in afl-cmin. Spotted by
teor2345 and Ben Nagy.

- Fixed an implicit declaration in LLVM mode on MacOS X. Reported by
Kai Zhao.

--------------
Version 1.82b:
--------------
Expand Down

0 comments on commit 1a57266

Please sign in to comment.