[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:
Michael J. Spencer 2013-02-08 01:05:48 +00:00
parent ea007fa608
commit dc0f8a3fd9

View File

@ -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";
}