mirror of https://github.com/google/oss-fuzz.git
kimageformats: fuzz the new .ani image handler (#4907)
This commit is contained in:
parent
9918fe9030
commit
ca0f1bcbca
|
@ -67,7 +67,8 @@ make -j$(nproc)
|
|||
|
||||
cd $SRC
|
||||
cd kimageformats
|
||||
HANDLER_TYPES="QAVIFHandler avif
|
||||
HANDLER_TYPES="ANIHandler ani
|
||||
QAVIFHandler avif
|
||||
KraHandler kra
|
||||
OraHandler ora
|
||||
PCXHandler pcx
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
Usage:
|
||||
python infra/helper.py build_image kimageformats
|
||||
python infra/helper.py build_fuzzers --sanitizer undefined|address|memory kimageformats
|
||||
python infra/helper.py run_fuzzer kimageformats kimgio_[avif|kra|ora|pcx|pic|psd|ras|rgb|tga|xcf]_fuzzer
|
||||
python infra/helper.py run_fuzzer kimageformats kimgio_[ani|avif|kra|ora|pcx|pic|psd|ras|rgb|tga|xcf]_fuzzer
|
||||
*/
|
||||
|
||||
|
||||
|
@ -28,6 +28,7 @@
|
|||
#include <QCoreApplication>
|
||||
#include <QImage>
|
||||
|
||||
#include "ani_p.h"
|
||||
#include "avif_p.h"
|
||||
#include "kra.h"
|
||||
#include "ora.h"
|
||||
|
|
Loading…
Reference in New Issue