From b5b8d20ddd287992ee286bf5f4d059fd527823ad Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Wed, 21 Sep 2011 04:01:19 +0000 Subject: llvm-objdump: Fix use after free. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140237 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvm-objdump/MachODump.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/llvm-objdump/MachODump.cpp b/tools/llvm-objdump/MachODump.cpp index 7e3bb20d3e..0daf9d4214 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; + OwningPtr DSYMObj; // Try to find debug info and set up the DIContext for it. if (UseDbg) { ArrayRef
DebugSections = Sections; std::vector
DSYMSections; - OwningPtr 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. -- cgit v1.2.3