[llvm] [llvm][ELF]Add Shdr check for getBuildID (PR #126537)
Fangrui Song via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 12 10:06:20 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)
----------------
MaskRay wrote:
Agreed. Should just fix the test.
https://github.com/llvm/llvm-project/pull/126537
More information about the llvm-commits
mailing list