diff options
author | Daniel Burrows <Daniel_Burrows@alumni.brown.edu> | 2009-03-09 20:06:04 -0700 |
---|---|---|
committer | Daniel Burrows <Daniel_Burrows@alumni.brown.edu> | 2009-03-09 20:06:04 -0700 |
commit | 296bdfcfdceb55c3d46c88e7bca57ed1936f8538 (patch) | |
tree | ba36e3afc803c06b0ccd143037730a07355942e7 /apt-pkg | |
parent | 17b3813cfad54b0ef14e70ad71e2d3ba49abfafe (diff) |
Fix an infinite loop in pkgAcquire::UriIterator::operator++() (Closes: #335615).
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/acquire.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/acquire.h b/apt-pkg/acquire.h index 1de6f5e44..eaadded55 100644 --- a/apt-pkg/acquire.h +++ b/apt-pkg/acquire.h @@ -539,7 +539,7 @@ class pkgAcquire::UriIterator public: - inline void operator ++() {operator ++();}; + inline void operator ++() {operator ++(0);}; void operator ++(int) { |