summaryrefslogtreecommitdiff
path: root/apt-pkg
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2011-08-09 14:52:13 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2011-08-09 14:52:13 +0200
commit7c9ff7fbd8dcc663713af75fd5d24b72dbcfe77f (patch)
treeaa5e90e26d12e6cc9e7b8ae66128336e28fbe9a0 /apt-pkg
parente8df63018fa0e4246b493ad95321b7f3c8ca0bcc (diff)
* apt-pkg/acquire.cc:
- fix potential divide-by-zero
Diffstat (limited to 'apt-pkg')
-rw-r--r--apt-pkg/acquire.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/apt-pkg/acquire.cc b/apt-pkg/acquire.cc
index 2064abc50..06b0f11f8 100644
--- a/apt-pkg/acquire.cc
+++ b/apt-pkg/acquire.cc
@@ -849,7 +849,9 @@ bool pkgAcquireStatus::Pulse(pkgAcquire *Owner)
char msg[200];
long i = CurrentItems < TotalItems ? CurrentItems + 1 : CurrentItems;
- unsigned long long const ETA = (TotalBytes - CurrentBytes) / CurrentCPS;
+ unsigned long long ETA = 0;
+ if(CurrentCPS > 0)
+ ETA = (TotalBytes - CurrentBytes) / CurrentCPS;
// only show the ETA if it makes sense
if (ETA > 0 && ETA < 172800 /* two days */ )