]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/deb/deblistparser.cc
doc: Fix fuzzy string regression
[apt.git] / apt-pkg / deb / deblistparser.cc
index e24ced27189fff38650ab555f29623c585e99c56..f7f64debdda1de3b75dd1c68ede503e24765e720 100644 (file)
@@ -999,7 +999,7 @@ bool debListParser::SameVersion(unsigned short const Hash,          /*{{{*/
    // status file is parsed last, so the first version we encounter is
    // probably also the version we have downloaded
    unsigned long long const Size = Section.FindULL("Size");
-   if (Size != 0 && Size != Ver->Size)
+   if (Size != 0 && Ver->Size != 0 && Size != Ver->Size)
       return false;
    // available everywhere, but easier to check here than to include in VersionHash
    unsigned char MultiArch = ParseMultiArch(false);