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:
Kostya Serebryany 2019-02-15 17:31:33 -08:00 committed by GitHub
parent ecf26f315b
commit e04fe0c39f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -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";
}