diff options
author | van Hauser <vh@thc.org> | 2019-12-18 09:17:49 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2019-12-18 09:17:49 +0100 |
commit | 64435284ce458c80c710c66e8c08b867d39ba388 (patch) | |
tree | d7f38632f251aa9fbd900148b50646b05862b9b1 /llvm_mode/afl-clang-fast.c | |
parent | cf70fe0c9e7c9aac36e22b96b0d89e411382dfea (diff) | |
download | afl++-64435284ce458c80c710c66e8c08b867d39ba388.tar.gz |
added Android PR from afl, left some ifdefs commented out though
Diffstat (limited to 'llvm_mode/afl-clang-fast.c')
-rw-r--r-- | llvm_mode/afl-clang-fast.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm_mode/afl-clang-fast.c b/llvm_mode/afl-clang-fast.c index e89b6183..c2b54a51 100644 --- a/llvm_mode/afl-clang-fast.c +++ b/llvm_mode/afl-clang-fast.c @@ -358,6 +358,7 @@ static void edit_params(u32 argc, char** argv) { } +//#ifndef __ANDROID__ // not sure, we might need these ifdefs for Android switch (bit_mode) { case 0: @@ -381,6 +382,7 @@ static void edit_params(u32 argc, char** argv) { break; } +//#endif } @@ -441,7 +443,9 @@ int main(int argc, char** argv) { } +//#ifndef __ANDROID__ // not sure this is needed for Android, so at the moment we rather keep this out find_obj(argv[0]); +//#endif edit_params(argc, argv); |