clarify generator variable

This commit is contained in:
Abyss Watcher
2025-01-27 11:03:08 +01:00
parent f2ac621220
commit 22a2fe17d8
@@ -214,7 +214,10 @@ if the "hidden_modules" key is present in known_modules.
# Determine the symbols associated with a hook
hooked_symbols = kernel.get_symbols_by_absolute_location(hook_address)
hooked_symbols = ",".join(
[s.split(constants.BANG)[-1] for s in hooked_symbols]
[
hooked_symbol.split(constants.BANG)[-1]
for hooked_symbol in hooked_symbols
]
)
yield ParsedFtraceOps(
ftrace_ops.vol.offset,