diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-06-09 03:48:50 +0200 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-06-09 03:48:50 +0200 |
commit | feffae60dd469b63db45a88204a1e17cc2f41bd3 (patch) | |
tree | dfe9f6b2706cb4f03510518b353eae793931b3a3 /libdislocator/libdislocator.so.c | |
parent | 8e3f6fe2dc92c1c24d6ebe2bf1021061a3211123 (diff) | |
download | afl++-feffae60dd469b63db45a88204a1e17cc2f41bd3.tar.gz |
code format
Diffstat (limited to 'libdislocator/libdislocator.so.c')
-rw-r--r-- | libdislocator/libdislocator.so.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libdislocator/libdislocator.so.c b/libdislocator/libdislocator.so.c index a5f03d0c..6b1cc848 100644 --- a/libdislocator/libdislocator.so.c +++ b/libdislocator/libdislocator.so.c @@ -503,10 +503,11 @@ __attribute__((constructor)) void __dislocator_init(void) { /* NetBSD fault handler specific api subset */ -void (* esetfunc(void (*fn)(int, const char *, ...)))(int, const char *, ...) -{ +void (*esetfunc(void (*fn)(int, const char *, ...)))(int, const char *, ...) { + /* Might not be meaningful to implement; upper calls already report errors */ return NULL; + } void *emalloc(size_t len) { @@ -526,3 +527,4 @@ void *erealloc(void *ptr, size_t len) { return realloc(ptr, len); } + |