]> git.saurik.com Git - apt.git/commitdiff
Merge remote-tracking branch 'upstream/debian/sid' into bugfix/coverity
authorMichael Vogt <mvo@debian.org>
Mon, 5 Aug 2013 20:51:30 +0000 (22:51 +0200)
committerMichael Vogt <mvo@debian.org>
Mon, 5 Aug 2013 20:51:30 +0000 (22:51 +0200)
apt-pkg/cdrom.h
apt-pkg/contrib/sha2.h
apt-pkg/tagfile.h

index 4fc3d39285b727b58518d6a539a12e086d1ebe40..7d19eb81359a5205a4a04b8e4408576cc356804c 100644 (file)
@@ -18,7 +18,7 @@ class pkgCdromStatus                                                  /*{{{*/
    int totalSteps;
 
  public:
-   pkgCdromStatus() {};
+   pkgCdromStatus() : totalSteps(0) {};
    virtual ~pkgCdromStatus() {};
 
    // total steps
index 51c921dbd7af7344560a9a52b3573d2d845ccb1a..8e0c99a1b6631d1e3ff74d5207f8a08f3a8dee91 100644 (file)
@@ -60,10 +60,11 @@ class SHA256Summation : public SHA2SummationBase
       res.Set(Sum);
       return res;
    };
-   SHA256Summation() 
+   SHA256Summation()
    {
       SHA256_Init(&ctx);
       Done = false;
+      memset(&Sum, 0, sizeof(Sum));
    };
 };
 
@@ -96,6 +97,7 @@ class SHA512Summation : public SHA2SummationBase
    {
       SHA512_Init(&ctx);
       Done = false;
+      memset(&Sum, 0, sizeof(Sum));
    };
 };
 
index 4718f5101171bf68f5e63e11830e0fb8e77b1f44..126f4219de805bba3c40243146df55b0e4c13c57 100644 (file)
@@ -84,7 +84,7 @@ class pkgTagSection
       Stop = this->Stop;
    };
    
-   pkgTagSection() : Section(0), TagCount(0), Stop(0) {};
+   pkgTagSection() : Section(0), TagCount(0), Stop(0), d(NULL) {};
    virtual ~pkgTagSection() {};
 };