mirror of
https://github.com/libjpeg-turbo/libjpeg-turbo
synced 2025-03-28 21:13:18 +00:00
Fix OSS-Fuzz decompress_yuv fuzzer MSan failure
This commit is contained in:
parent
d7932a2709
commit
6bace81b1b
@ -86,7 +86,8 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
|
||||
if ((dstBuf = (unsigned char *)tj3Alloc(w * h * tjPixelSize[pf])) == NULL)
|
||||
goto bailout;
|
||||
if ((yuvBuf =
|
||||
(unsigned char *)malloc(tj3YUVBufSize(w, 1, h, jpegSubsamp))) == NULL)
|
||||
(unsigned char *)tj3Alloc(tj3YUVBufSize(w, 1, h,
|
||||
jpegSubsamp))) == NULL)
|
||||
goto bailout;
|
||||
|
||||
if (tj3DecompressToYUV8(handle, data, size, yuvBuf, 1) == 0 &&
|
||||
|
Loading…
x
Reference in New Issue
Block a user