mirror of https://github.com/google/oss-fuzz.git
Disabled leak check in xpdf. (#3992)
This commit is contained in:
parent
1ee643d324
commit
1d2ada9309
|
@ -22,3 +22,4 @@ RUN wget --no-check-certificate https://dl.xpdfreader.com/xpdf-latest.tar.gz
|
|||
WORKDIR $SRC
|
||||
COPY fuzz_*.cc $SRC/
|
||||
COPY build.sh $SRC/
|
||||
COPY fuzz_pdfload.options $SRC/fuzz_pdfload.options
|
||||
|
|
|
@ -36,3 +36,6 @@ for fuzzer in zxdoc pdfload; do
|
|||
./xpdf/libtestXpdfStatic.a ./fofi/libfofi.a ./goo/libgoo.a \
|
||||
-I../ -I../goo -I../fofi -I. -I../xpdf
|
||||
done
|
||||
|
||||
# Copy over options files
|
||||
cp $SRC/fuzz_pdfload.options $OUT/
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
[libfuzzer]
|
||||
detect_leaks=0
|
Loading…
Reference in New Issue