contrib: remove bdb exception from FORTIFY check

BDB has been removed (#28710), so we no-longer need to ignore functions
from BDB in this check.
This commit is contained in:
fanquake 2025-05-08 11:04:22 +01:00
parent 66c968b4b4
commit f9dfe8d5e0
No known key found for this signature in database
GPG Key ID: 2EEB9F5CC09526C1

View File

@ -130,9 +130,8 @@ def check_ELF_FORTIFY(binary) -> bool:
if match:
chk_funcs.add(match.group(0))
# ignore stack-protector and bdb
# ignore stack-protector
chk_funcs.discard('__stack_chk')
chk_funcs.discard('__db_chk')
return len(chk_funcs) >= 1