]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/versionmatch.cc
* apt-ftparchive might write corrupt Release files (LP: #46439)
[apt.git] / apt-pkg / versionmatch.cc
index 4a426809c9095bc9002137beaf75b4b3904cd89a..5c25c2f7b98cf92e1f12c53961aa51dc46110935 100644 (file)
@@ -124,7 +124,7 @@ bool pkgVersionMatch::MatchVer(const char *A,string B,bool Prefix)
    const char *Ae = Ab + strlen(A);
    
    // Strings are not a compatible size.
-   if ((unsigned)(Ae - Ab) != B.length() && Prefix == false ||
+   if (((unsigned)(Ae - Ab) != B.length() && Prefix == false) ||
        (unsigned)(Ae - Ab) < B.length())
       return false;