tools: fix heap-buffer-overrun detected via ASAN
Once the auxiliary fields relating to the filename have been inspected, any following auxiliary fields need not be visited as they have been consumed (the following fields comprise the filepath as a single unit). Adjust the test to catch this even if ASAN is not enabled. llvm-svn: 206190
This commit is contained in:
@@ -708,6 +708,9 @@ static void PrintCOFFSymbolTable(const COFFObjectFile *coff) {
|
||||
StringRef Name(AF->FileName,
|
||||
Symbol->NumberOfAuxSymbols * COFF::SymbolSize);
|
||||
outs() << "AUX " << Name.rtrim(StringRef("\0", 1)) << '\n';
|
||||
|
||||
SI = SI + Symbol->NumberOfAuxSymbols;
|
||||
break;
|
||||
} else {
|
||||
outs() << "AUX Unknown\n";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user