diff options
author | dsinclair <dsinclair@chromium.org> | 2016-06-13 13:46:49 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-13 13:46:49 -0700 |
commit | 82e24b1c5047076b982c073671315071760b9880 (patch) | |
tree | e295661ad5381c3a8135d5421f9d0e4d265d9efd /core/fxcodec/codec/include | |
parent | 754646948a572745380bcbdc23433337ca3dc562 (diff) | |
download | pdfium-82e24b1c5047076b982c073671315071760b9880.tar.xz |
Optionally skip image type detection in progressive decoder.
The progressive decoder will attempt to verify that the provided image type
matches the actual image content. We need to disable this check when running
the fuzzer in order to target the fuzzing to specific decoders otherwise
each fuzzer will end up fuzzing all of the decoders.
BUG=chromium:587126
Review-Url: https://codereview.chromium.org/2061733002
Diffstat (limited to 'core/fxcodec/codec/include')
-rw-r--r-- | core/fxcodec/codec/include/ccodec_progressivedecoder.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/fxcodec/codec/include/ccodec_progressivedecoder.h b/core/fxcodec/codec/include/ccodec_progressivedecoder.h index 5774371ff1..5df2c4f733 100644 --- a/core/fxcodec/codec/include/ccodec_progressivedecoder.h +++ b/core/fxcodec/codec/include/ccodec_progressivedecoder.h @@ -47,7 +47,8 @@ class CCodec_ProgressiveDecoder { FXCODEC_STATUS LoadImageInfo(IFX_FileRead* pFile, FXCODEC_IMAGE_TYPE imageType, - CFX_DIBAttribute* pAttribute); + CFX_DIBAttribute* pAttribute, + bool bSkipImageTypeCheck); FXCODEC_IMAGE_TYPE GetType() const { return m_imagType; } int32_t GetWidth() const { return m_SrcWidth; } |