]> git.saurik.com Git - apt.git/commitdiff
add missing "free(buffer) for allocated buffer
authorMichael Vogt <mvo@debian.org>
Thu, 25 Jul 2013 18:55:18 +0000 (20:55 +0200)
committerMichael Vogt <mvo@debian.org>
Thu, 25 Jul 2013 18:55:18 +0000 (20:55 +0200)
apt-pkg/contrib/fileutl.cc
methods/gpgv.cc

index 398830ff554854c2d7a591457759ebefad2c1f76..0b6e07f753e71950d3d610f8ae1b065b84a401b5 100644 (file)
@@ -251,7 +251,6 @@ int GetLock(string File,bool Errors)
 
       if (errno == ENOLCK)
       {
-
         _error->Warning(_("Not using locking for nfs mounted lock file %s"),File.c_str());
         return dup(0);       // Need something for the caller to close  
       }
index fe8bac6c9e17634971113c75ed84f06a5640a439..ea8a26fd42d0312931091963cfdac9b72274902c 100644 (file)
@@ -152,6 +152,7 @@ string GPGVMethod::VerifyGetSigners(const char *file, const char *outfile,
       }
    }
    fclose(pipein);
+   free(buffer);
 
    int status;
    waitpid(pid, &status, 0);