[PATCH] D82886: [DebugInfo] Fix a possible crash when reading a malformed .debug_*lists section.
Adrian Prantl via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jun 30 14:41:40 PDT 2020
aprantl accepted this revision.
aprantl added inline comments.
This revision is now accepted and ready to land.
================
Comment at: llvm/lib/DebugInfo/DWARF/DWARFListTable.cpp:38
SectionName.data(), HeaderOffset, FullLength);
+ assert(FullLength == length());
uint64_t End = HeaderOffset + FullLength;
----------------
seems reasonable. Could you add an `&& "some explanation"` to the assert that explains what went wrong?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D82886/new/
https://reviews.llvm.org/D82886
More information about the llvm-commits
mailing list