oss-fuzz/tiff_read_rgba_fuzzer.cc: fix wrong env variable value in previous commit

This commit is contained in:
Even Rouault 2019-08-11 00:36:31 +02:00
parent 2c7e74245a
commit 187e596861
No known key found for this signature in database
GPG Key ID: 33EBBFC47B3DD87D

View File

@ -46,7 +46,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
// libjpeg-turbo has issues with MSAN and SIMD code
// See https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=7547
// and https://github.com/libjpeg-turbo/libjpeg-turbo/pull/365
setenv("JSIMD_FORCENONE" ,"YES", 1);
setenv("JSIMD_FORCENONE" ,"1", 1);
# endif
#endif
std::istringstream s(std::string(Data,Data+Size));