diff options
author | Michael Vogt <mvo@ubuntu.com> | 2014-10-02 00:47:33 +0200 |
---|---|---|
committer | Michael Vogt <mvo@ubuntu.com> | 2014-10-02 00:47:33 +0200 |
commit | a64bf0eb7a4e0a6fbb19d19efabecd709a19b917 (patch) | |
tree | ba9e0e9393e6be26124c0e7eee07443491db42fd /apt-pkg/acquire-item.h | |
parent | 1e8ba0d4087f72a930a588ce5fbf0c22dddb9403 (diff) |
fix crash
Diffstat (limited to 'apt-pkg/acquire-item.h')
-rw-r--r-- | apt-pkg/acquire-item.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/apt-pkg/acquire-item.h b/apt-pkg/acquire-item.h index 5d5d6efb9..fbbca8bf2 100644 --- a/apt-pkg/acquire-item.h +++ b/apt-pkg/acquire-item.h @@ -619,10 +619,9 @@ class pkgAcqBaseIndex : public pkgAcquire::Item pkgAcqMetaBase *TransactionManager, struct IndexTarget const * const Target, HashStringList const &ExpectedHashes, - indexRecords *MetaIndexParser, - std::string RealURI) + indexRecords *MetaIndexParser) : Item(Owner, ExpectedHashes, TransactionManager), Target(Target), - MetaIndexParser(MetaIndexParser), RealURI(RealURI) {}; + MetaIndexParser(MetaIndexParser) {}; }; /*}}}*/ /** \brief An item that is responsible for fetching an index file of {{{ |