Skip to content

Commit

Permalink
Fix i386 transform fuzzer build
Browse files Browse the repository at this point in the history
  • Loading branch information
dcommander committed Jan 28, 2023
1 parent 0205c6e commit fd93d98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz/transform.cc
Expand Up @@ -39,7 +39,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{
tjhandle handle = NULL;
unsigned char *dstBufs[NUMXFORMS] = { NULL, NULL, NULL };
unsigned long dstSizes[NUMXFORMS] = { 0, 0, 0 }, maxBufSize;
size_t dstSizes[NUMXFORMS] = { 0, 0, 0 }, maxBufSize;
int width = 0, height = 0, jpegSubsamp, i, t;
tjtransform transforms[NUMXFORMS];
#if defined(__has_feature) && __has_feature(memory_sanitizer)
Expand Down

0 comments on commit fd93d98

Please sign in to comment.