mirror of https://github.com/google/oss-fuzz.git
revert the previous change: the leak is actually not fixed yet
https://github.com/glennrp/libpng/pull/279 https://github.com/glennrp/libpng/issues/274
This commit is contained in:
parent
ecf26f315b
commit
e04fe0c39f
|
@ -132,3 +132,10 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|||
png_image_free(&image);
|
||||
return 0;
|
||||
}
|
||||
|
||||
extern "C" const char *__asan_default_options() {
|
||||
// TODO: remove this once
|
||||
// https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=12716
|
||||
// is fixed.
|
||||
return "detect_leaks=0";
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue