mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-04 03:17:51 +00:00
[readobj] Fix memory leak.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174687 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ea007fa608
commit
dc0f8a3fd9
@ -240,7 +240,8 @@ int main(int argc, char** argv) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
ObjectFile *obj = ObjectFile::createObjectFile(File.take());
|
||||
OwningPtr<ObjectFile> o(ObjectFile::createObjectFile(File.take()));
|
||||
ObjectFile *obj = o.get();
|
||||
if (!obj) {
|
||||
errs() << InputFilename << ": Object type not recognized\n";
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user