mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-26 20:44:32 +08:00
leaking_addresses: Always print a trailing newline
[ Upstream commit cf2a85efda
]
For files that lack trailing newlines and match a leaking address (e.g.
wchan[1]), the leaking_addresses.pl report would run together with the
next line, making things look corrupted.
Unconditionally remove the newline on input, and write it back out on
output.
[1] https://lore.kernel.org/all/20210103142726.GC30643@xsang-OptiPlex-9020/
Signed-off-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/20211008111626.151570317@infradead.org
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
9796eb9137
commit
7c0caa7e26
@ -455,8 +455,9 @@ sub parse_file
|
||||
|
||||
open my $fh, "<", $file or return;
|
||||
while ( <$fh> ) {
|
||||
chomp;
|
||||
if (may_leak_address($_)) {
|
||||
print $file . ': ' . $_;
|
||||
printf("$file: $_\n");
|
||||
}
|
||||
}
|
||||
close $fh;
|
||||
|
Loading…
Reference in New Issue
Block a user