[llvm] [llvm-objdump][ELF]Fix crash when reading strings from .dynstr (PR #125679)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 19 21:30:36 PST 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff 9fdb0633051121af24dfa00e8a762df10138ecc3 430670762c34ba8abe8201da6c6fab84c0294de9 --extensions cpp -- llvm/tools/llvm-objdump/ELFDump.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/tools/llvm-objdump/ELFDump.cpp b/llvm/tools/llvm-objdump/ELFDump.cpp
index 5e10728f38..7f1b0d559f 100644
--- a/llvm/tools/llvm-objdump/ELFDump.cpp
+++ b/llvm/tools/llvm-objdump/ELFDump.cpp
@@ -76,8 +76,9 @@ static Expected<StringRef> getDynamicStrTab(const ELFFile<ELFT> &Elf) {
StringTableSize = Dyn.getVal();
}
}
- if(MappedAddr && StringTableSize)
- return StringRef(reinterpret_cast<const char *>(MappedAddr), StringTableSize);
+ if (MappedAddr && StringTableSize)
+ return StringRef(reinterpret_cast<const char *>(MappedAddr),
+ StringTableSize);
// If the dynamic segment is not present, we fall back on the sections.
auto SectionsOrError = Elf.sections();
``````````
</details>
https://github.com/llvm/llvm-project/pull/125679
More information about the llvm-commits
mailing list