* cmdline/apt-get.cc
authorDavid Kalnischkies <kalnischkies@gmail.com>
Fri, 12 Mar 2010 10:08:13 +0000 (11:08 +0100)
committerDavid Kalnischkies <kalnischkies@gmail.com>
Fri, 12 Mar 2010 10:08:13 +0000 (11:08 +0100)
  - fix memory leaks in error conditions in DoSource()

apt-pkg/cdrom.cc
cmdline/apt-get.cc
debian/changelog

index 96d4e9c..783ffc4 100644 (file)
@@ -289,7 +289,8 @@ bool pkgCdrom::DropRepeats(vector<string> &List,const char *Name)
         List[J] = string();
       }
    }  
+   delete[] Inodes;
+
    // Wipe erased entries
    for (unsigned int I = 0; I < List.size();)
    {
index b35e16b..849401b 100644 (file)
@@ -2299,6 +2299,7 @@ bool DoSource(CommandLine &CmdL)
    {
       for (unsigned I = 0; I != J; I++)
         ioprintf(cout,_("Fetch source %s\n"),Dsc[I].Package.c_str());
+      delete[] Dsc;
       return true;
    }
    
@@ -2309,6 +2310,7 @@ bool DoSource(CommandLine &CmdL)
       for (; I != Fetcher.UriEnd(); I++)
         cout << '\'' << I->URI << "' " << flNotDir(I->Owner->DestFile) << ' ' << 
               I->Owner->FileSize << ' ' << I->Owner->HashSum() << endl;
+      delete[] Dsc;
       return true;
    }
    
@@ -2334,6 +2336,7 @@ bool DoSource(CommandLine &CmdL)
    if (_config->FindB("APT::Get::Download-only",false) == true)
    {
       c1out << _("Download complete and in download only mode") << endl;
+      delete[] Dsc;
       return true;
    }
 
@@ -2395,7 +2398,8 @@ bool DoSource(CommandLine &CmdL)
       
       _exit(0);
    }
-   
+   delete[] Dsc;
+
    // Wait for the subprocess
    int Status = 0;
    while (waitpid(Process,&Status,0) != Process)
index f27c096..b05498f 100644 (file)
@@ -16,6 +16,7 @@ apt (0.7.26) UNRELEASED; urgency=low
     - fix error message construction in OpenLog()
   * cmdline/apt-get.cc:
     - add a --only-upgrade flag to install command (Closes: #572259)
+    - fix memory leaks in error conditions in DoSource()
 
  -- David Kalnischkies <kalnischkies@gmail.com>  Fri, 19 Feb 2010 21:21:43 +0100