Delete the buffer in createObjectFile if it fails.
authorRafael Espindola <rafael.espindola@gmail.com>
Wed, 24 Jul 2013 14:00:26 +0000 (14:00 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Wed, 24 Jul 2013 14:00:26 +0000 (14:00 +0000)
The Binary constructor takes ownership of the memory buffer. This is a fairly
unfortunate interface, but for now make createObjectFile consistent with it
by also deleting the buffer if it fails.

Fixes a leak in llvm-ar found by the valgrind bots.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187039 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Object/ObjectFile.cpp

index 8dfc26508bcc08bebd39c8f80e5de0d5676f7163..1d1dafdc8f42c9d93d3973165de7918ddd70c38e 100644 (file)
@@ -38,8 +38,10 @@ section_iterator ObjectFile::getRelocatedSection(DataRefImpl Sec) const {
 }
 
 ObjectFile *ObjectFile::createObjectFile(MemoryBuffer *Object) {
-  if (!Object || Object->getBufferSize() < 64)
+  if (Object->getBufferSize() < 64) {
+    delete Object;
     return 0;
+  }
 
   sys::fs::file_magic Type = sys::fs::identify_magic(Object->getBuffer());
   switch (Type) {
@@ -47,6 +49,7 @@ ObjectFile *ObjectFile::createObjectFile(MemoryBuffer *Object) {
   case sys::fs::file_magic::bitcode:
   case sys::fs::file_magic::archive:
   case sys::fs::file_magic::macho_universal_binary:
+    delete Object;
     return 0;
   case sys::fs::file_magic::elf_relocatable:
   case sys::fs::file_magic::elf_executable: