diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2005-11-23 00:00:13 +0000 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2005-11-23 00:00:13 +0000 |
commit | 171c75f13acc955110a6c4693c7b8fe243709843 (patch) | |
tree | 5ab08f93a83b026a12cab131061ddf91cbf476f2 /apt-pkg/deb/deblistparser.cc | |
parent | 7c6e2dc761f736bf203f7770f7a1c4a63f7063d4 (diff) |
* applied parts of the string speedup patch from debian #319377 (ABI change)
Diffstat (limited to 'apt-pkg/deb/deblistparser.cc')
-rw-r--r-- | apt-pkg/deb/deblistparser.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/deb/deblistparser.cc b/apt-pkg/deb/deblistparser.cc index 25b533773..b11d2531c 100644 --- a/apt-pkg/deb/deblistparser.cc +++ b/apt-pkg/deb/deblistparser.cc @@ -377,12 +377,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; } |