Make sure the Archive gets deleted if there's an error.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18869 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Bytecode/Archive/ArchiveReader.cpp b/lib/Bytecode/Archive/ArchiveReader.cpp
index a813371..d4a4921 100644
--- a/lib/Bytecode/Archive/ArchiveReader.cpp
+++ b/lib/Bytecode/Archive/ArchiveReader.cpp
@@ -282,9 +282,9 @@
 Archive*
 Archive::OpenAndLoad(const sys::Path& file, std::string* ErrorMessage) {
   try {
-    Archive* result = new Archive(file, true);
+    std::auto_ptr<Archive> result ( new Archive(file, true));
     result->loadArchive();
-    return result;
+    return result.release();
   } catch (const std::string& msg) {
     if (ErrorMessage) {
       *ErrorMessage = msg;
@@ -377,9 +377,9 @@
 Archive*
 Archive::OpenAndLoadSymbols(const sys::Path& file, std::string* ErrorMessage) {
   try {
-    Archive* result = new Archive(file, true);
+    std::auto_ptr<Archive> result ( new Archive(file, true) );
     result->loadSymbolTable();
-    return result;
+    return result.release();
   } catch (const std::string& msg) {
     if (ErrorMessage) {
       *ErrorMessage = msg;