]> git.saurik.com Git - apt.git/commitdiff
pkgCacheGenerator: CurMd5.Value() cannot be empty
authorJulian Andres Klode <jak@debian.org>
Fri, 8 Jan 2016 11:15:11 +0000 (12:15 +0100)
committerJulian Andres Klode <jak@debian.org>
Fri, 8 Jan 2016 11:23:08 +0000 (12:23 +0100)
It makes no sense to check if the value is empty, as it cannot
be. It will always be a hexstring of exactly 32 bytes.

apt-pkg/pkgcachegen.cc

index 79d633cb72d7eb4ec77a1379142c068b7e09eb3b..80392ff4543fb10e6548fbac816703aa3ebd0faa 100644 (file)
@@ -308,8 +308,6 @@ bool pkgCacheGenerator::MergeListPackage(ListParser &List, pkgCache::PkgIterator
 
    // Find the right version to write the description
    MD5SumValue CurMd5 = List.Description_md5();
-   if (CurMd5.Value().empty() == true && List.Description("").empty() == true)
-      return true;
    std::vector<std::string> availDesc = List.AvailableDescriptionLanguages();
    for (Ver = Pkg.VersionList(); Ver.end() == false; ++Ver)
    {
@@ -444,8 +442,6 @@ bool pkgCacheGenerator::MergeListVersion(ListParser &List, pkgCache::PkgIterator
 
    /* Record the Description(s) based on their master md5sum */
    MD5SumValue CurMd5 = List.Description_md5();
-   if (CurMd5.Value().empty() == true && List.Description("").empty() == true)
-      return true;
 
    /* Before we add a new description we first search in the group for
       a version with a description of the same MD5 - if so we reuse this