]> git.saurik.com Git - apt.git/commitdiff
check for length of Data to avoid the validness of
authorDavid Kalnischkies <kalnischkies@gmail.com>
Thu, 2 Sep 2010 13:19:51 +0000 (15:19 +0200)
committerDavid Kalnischkies <kalnischkies@gmail.com>
Thu, 2 Sep 2010 13:19:51 +0000 (15:19 +0200)
Pin: origin "
(no error displayed). We already know in this method that
Data is at least one char long, so we avoid the length counting
as long as the string doesn't start with "

apt-pkg/versionmatch.cc

index 17a54bc4c5a3dd9582cafe28c2d64fde8d161860..c40b1fdbc859b0875192ac79ca55a3d461fc6e43 100644 (file)
@@ -118,7 +118,7 @@ pkgVersionMatch::pkgVersionMatch(string Data,MatchType Type) : Type(Type)
    
    if (Type == Origin)
    {
-      if (Data[0] == '"' && Data.end()[-1] == '"')
+      if (Data[0] == '"' && Data.length() >= 2 && Data.end()[-1] == '"')
         OrSite = Data.substr(1, Data.length() - 2);
       else
         OrSite = Data;