[llvm] [llvm][ELF]Add Shdr check for getBuildID (PR #126537)
Ruoyu Qiu via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 13 15:45:56 PST 2025
================
@@ -660,7 +660,7 @@ class Elf_Note_Impl {
/// Get the note's descriptor.
ArrayRef<uint8_t> getDesc(size_t Align) const {
- if (!Nhdr.n_descsz)
+ if (!Nhdr.n_descsz || !Align)
----------------
cabbaken wrote:
I add the `AddressAlign` property to the Section, and it can pass now.
https://github.com/llvm/llvm-project/pull/126537
More information about the llvm-commits
mailing list