This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
jdk-build-libs
/
json-c
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
11
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
remove bad fuzzer
pull/583/head
Chris Wolfe
5 years ago
parent
2380df9a37
commit
31a8afbf88
3 changed files
with
0 additions
and
11 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-1
fuzz/CMakeLists.txt
+0
-9
fuzz/bad_fuzzer.cc
+0
-1
fuzz/build.sh
+ 0
- 1
fuzz/CMakeLists.txt
View File
@@ -17,7 +17,6 @@ else()
endif()
foreach(FUZZERNAME
bad_fuzzer
tokener_parse_ex_fuzzer)
add_executable(${FUZZERNAME} ${FUZZERNAME}.cc)
+ 0
- 9
fuzz/bad_fuzzer.cc
View File
@@ -1,9 +0,0 @@
#include <stdint.h>
#include <stddef.h>
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
int *array = new int[100];
delete [] array;
return array[size]; // BOOM
}
+ 0
- 1
fuzz/build.sh
View File
@@ -33,4 +33,3 @@ for F in $fuzzerFiles; do
FN=$(basename -- $F)
cp "$SRC/corpus.zip" "$OUT/${FN}_seed_corpus.zip"
done
# for fuzzer in fuzz copy the json corpus as a zip file
Write
Preview
Loading…
Cancel
Save