source2rosetta/fuzz/lsan_suppressions.txt
Kamal Tufekcic c458b4cb50
All checks were successful
CI / lint (push) Successful in 17s
CI / fuzz (push) Successful in 1m52s
CI / test (push) Successful in 24s
read what the binary says about itself: names, signatures, prototypes; gen v2
2026-07-29 20:09:21 +03:00

9 lines
581 B
Text

# LeakSanitizer suppressions for the fuzz targets.
#
# iced_x86 builds its instruction-decode tables once, lazily, and holds them for the whole process
# lifetime via `'static` (Box::leak-style) references — LSan can't trace those roots, so it reports the
# one-time allocation as a leak on the first input that decodes an instruction of that encoding family.
# It is NOT a leak: the tables are immutable process-lifetime globals, allocated once, reused forever.
#
# This is scoped to iced_x86 ONLY — a real leak in source2rosetta's own code still fails the run.
leak:iced_x86