D48660 / rL335762 added a silence_unsigned_overflow env flag for oss-fuzz needs,
that allows to silence the reports from unsigned overflows.
It makes sense, it is there because -fsanitize=integer sanitizer is not enabled on oss-fuzz,
so this allows to still use it as an interestingness signal, without getting the actual reports.
However there is a slight problem here.
All types of unsigned overflows are ignored.
Even if -fno-sanitize-recover=unsigned was used (which means the program will die after the report)
there will still be no report, the program will just silently die.
At the moment there are just two projects on oss-fuzz that care:
I suppose this could be overridden there ^, but i really don't think this is intended behavior in any case..