diff options
author | Michael Vogt <mvo@debian.org> | 2010-07-12 13:26:10 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2010-07-12 13:26:10 +0200 |
commit | 2a679f4f71784800b6643b5c4eecb4b11865a439 (patch) | |
tree | c8b5f2967f09a3001becf5fb6ff634d933e171a2 /apt-pkg/cacheiterators.h | |
parent | 137a73dc58b14f71a11da5940e099725f6dad8ef (diff) | |
parent | d10cef824604012516f26efaae8bab1f29a7820a (diff) |
merged from lp:~donkult/apt/sid
Diffstat (limited to 'apt-pkg/cacheiterators.h')
-rw-r--r-- | apt-pkg/cacheiterators.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/cacheiterators.h b/apt-pkg/cacheiterators.h index eb8dee5e3..1dcc34532 100644 --- a/apt-pkg/cacheiterators.h +++ b/apt-pkg/cacheiterators.h @@ -75,8 +75,8 @@ template<typename Str, typename Itr> class pkgCache::Iterator : inline bool IsGood() const { return S && Owner && ! end();}; inline unsigned long Index() const {return S - OwnerPointer();}; - void ReOwn(pkgCache &newOwner, void const * const oldMap, void const * const newMap) { - if (S == 0) + void ReMap(void const * const oldMap, void const * const newMap) { + if (Owner == 0 || S == 0) return; S += (Str*)(newMap) - (Str*)(oldMap); } |