]> git.saurik.com Git - apt.git/commitdiff
Zero out the new memory allocated with realloc().
authorJulian Andres Klode <jak@debian.org>
Sat, 16 Jun 2012 12:38:09 +0000 (14:38 +0200)
committerJulian Andres Klode <jak@debian.org>
Sat, 16 Jun 2012 12:38:09 +0000 (14:38 +0200)
apt-pkg/contrib/mmap.cc
debian/changelog

index 131cefd6e35b00cf92ead450dd81d18a4c43ef6a..77b4502f5a4dde261f800e1de21df38ec93025b4 100644 (file)
@@ -461,6 +461,8 @@ bool DynamicMMap::Grow() {
                        return false;
 
                Base = realloc(Base, newSize);
+               /* Set new memory to 0 */
+               memset((char*)Base + WorkSpace, 0, newSize - WorkSpace);
                if (Base == NULL)
                        return false;
        }
index 2050cb05ac1017f90fdcb500fa84f5237b8cf4ed..1cdfbe61d5d80783dcbc6e1495f635224c4a9951 100644 (file)
@@ -4,6 +4,7 @@ apt (0.9.7) UNRELEASED; urgency=low
     - Fix the Fallback option to work correctly, by not calling
       realloc() on a map mapped by mmap(), and by using malloc
       and friends instead of new[].
+    - Zero out the new memory allocated with realloc().
 
  -- Julian Andres Klode <jak@debian.org>  Sat, 16 Jun 2012 14:28:38 +0200