Skip to content

Commit f9dfe8d

Browse files
committed
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.
1 parent 66c968b commit f9dfe8d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

contrib/devtools/security-check.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,8 @@ def check_ELF_FORTIFY(binary) -> bool:
130130
if match:
131131
chk_funcs.add(match.group(0))
132132

133-
# ignore stack-protector and bdb
133+
# ignore stack-protector
134134
chk_funcs.discard('__stack_chk')
135-
chk_funcs.discard('__db_chk')
136135

137136
return len(chk_funcs) >= 1
138137

0 commit comments

Comments
 (0)