]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/deb/deblistparser.cc
* merged with apt--mvo
[apt.git] / apt-pkg / deb / deblistparser.cc
index 97553ab825d2dd6c0982cfd436b020c98aee4658..441bb826fa0d59346c957cac91d68c18a001458d 100644 (file)
@@ -420,12 +420,12 @@ const char *debListParser::ParseDepends(const char *Start,const char *Stop,
       const char *End = I;
       for (; End > Start && isspace(End[-1]); End--);
       
-      Ver = string(Start,End-Start);
+      Ver.assign(Start,End-Start);
       I++;
    }
    else
    {
-      Ver = string();
+      Ver.clear();
       Op = pkgCache::Dep::NoOp;
    }