Skip to content

Commit 286292f

Browse files
committed
Rebrand into libdiffuzz
1 parent 14ff5db commit 286292f

2 files changed

Lines changed: 12 additions & 14 deletions

File tree

Makefile

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
#
2-
# american fuzzy lop - libdislocator
3-
# ----------------------------------
4-
#
5-
# Written by Michal Zalewski <lcamtuf@google.com>
6-
#
7-
# Copyright 2016 Google Inc. All rights reserved.
2+
# libdiffuzz
83
#
94
# Licensed under the Apache License, Version 2.0 (the "License");
105
# you may not use this file except in compliance with the License.
@@ -19,18 +14,18 @@ HELPER_PATH = $(PREFIX)/lib/afl
1914
CFLAGS ?= -O3 -funroll-loops
2015
CFLAGS += -Wall -D_FORTIFY_SOURCE=2 -g -Wno-pointer-sign
2116

22-
all: libdislocator.so
17+
all: libdiffuzz.so
2318

24-
libdislocator.so: libdislocator.so.c
19+
libdiffuzz.so: libdiffuzz.so.c
2520
$(CC) $(CFLAGS) -shared -fPIC $< -o $@ $(LDFLAGS)
2621

2722
.NOTPARALLEL: clean
2823

2924
clean:
3025
rm -f *.o *.so *~ a.out core core.[1-9][0-9]*
31-
rm -f libdislocator.so
26+
rm -f libdiffuzz.so
3227

3328
install: all
34-
install -m 755 libdislocator.so $${DESTDIR}$(HELPER_PATH)
29+
install -m 755 libdiffuzz.so $${DESTDIR}$(HELPER_PATH)
3530
install -m 644 README.dislocator $${DESTDIR}$(HELPER_PATH)
3631

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
/*
22
3-
american fuzzy lop - dislocator, an abusive allocator
4-
-----------------------------------------------------
3+
libdiffuzz: memory allocator that helps discover
4+
reads from uninitialized memory.
55
6-
Written and maintained by Michal Zalewski <lcamtuf@google.com>
6+
Written by Sergey Davidoff <shnatsel@gmail.com>
7+
based on american fuzzy lop's dislocator, which is
8+
written and maintained by Michal Zalewski <lcamtuf@google.com>
79
8-
Copyright 2016 Google Inc. All rights reserved.
10+
libdiffuzz: Copyright 2018 Sergey Davidoff
11+
libdislocator: Copyright 2016 Google Inc. All rights reserved.
912
1013
Licensed under the Apache License, Version 2.0 (the "License");
1114
you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)