diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-09-21 04:01:19 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-09-21 04:01:19 +0000 |
commit | b5b8d20ddd287992ee286bf5f4d059fd527823ad (patch) | |
tree | 466884156a2231e50129bc0ff0fa361a45417acd /tools | |
parent | e55e64f01af6c53917db7556d25e4717ca975dad (diff) | |
download | external_llvm-b5b8d20ddd287992ee286bf5f4d059fd527823ad.zip external_llvm-b5b8d20ddd287992ee286bf5f4d059fd527823ad.tar.gz external_llvm-b5b8d20ddd287992ee286bf5f4d059fd527823ad.tar.bz2 |
llvm-objdump: Fix use after free.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140237 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/llvm-objdump/MachODump.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-objdump/MachODump.cpp b/tools/llvm-objdump/MachODump.cpp index 7e3bb20..0daf9d4 100644 --- a/tools/llvm-objdump/MachODump.cpp +++ b/tools/llvm-objdump/MachODump.cpp @@ -346,11 +346,11 @@ void llvm::DisassembleInputMachO(StringRef Filename) { StringRef DebugAbbrevSection, DebugInfoSection, DebugArangesSection, DebugLineSection, DebugStrSection; OwningPtr<DIContext> diContext; + OwningPtr<MachOObject> DSYMObj; // Try to find debug info and set up the DIContext for it. if (UseDbg) { ArrayRef<Section> DebugSections = Sections; std::vector<Section> DSYMSections; - OwningPtr<MachOObject> DSYMObj; // A separate DSym file path was specified, parse it as a macho file, // get the sections and supply it to the section name parsing machinery. |