summaryrefslogtreecommitdiffstats
path: root/textw
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-07-28 01:47:03 +0000
committerMatt Wilson <msw@redhat.com>2000-07-28 01:47:03 +0000
commitfbdba2e9da48b094547f16872ff1ebfe5c01efa6 (patch)
treec30a59f15153bfabbbc72027a80937822007baa8 /textw
parente7484df6a480616e2f412424a0adbfc76e0b8148 (diff)
downloadanaconda-fbdba2e9da48b094547f16872ff1ebfe5c01efa6.tar.gz
anaconda-fbdba2e9da48b094547f16872ff1ebfe5c01efa6.tar.xz
anaconda-fbdba2e9da48b094547f16872ff1ebfe5c01efa6.zip
fixed another int overflow
Diffstat (limited to 'textw')
-rw-r--r--textw/packages_text.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/textw/packages_text.py b/textw/packages_text.py
index b8834201c..f8a8083e3 100644
--- a/textw/packages_text.py
+++ b/textw/packages_text.py
@@ -108,8 +108,7 @@ class IndividualPackageWindow:
def printSize(self, size):
if not size:
return " "
- size = size / 1024
- return "%3d.%dM" % (size / 1024, (((size * 10) / 1024) % 10))
+ return "%3d.%dM" % (size / 1024, (((size * 10) / 1024) % 10))
def printTotal(self):
size = self.total / 1024
@@ -132,14 +131,14 @@ class IndividualPackageWindow:
key = header[rpm.RPMTAG_GROUP]
if isOn:
- self.groupSize[key] = self.groupSize[key] + header[rpm.RPMTAG_SIZE]
+ self.groupSize[key] = self.groupSize[key] + (header[rpm.RPMTAG_SIZE] / 1024)
self.total = self.total + header[rpm.RPMTAG_SIZE]
self.groupSelCount[key] = self.groupSelCount[key] + 1
self.ct.setEntry(header, "%-*s %s" % (self.length,
header[rpm.RPMTAG_NAME],
self.printSize(header[rpm.RPMTAG_SIZE])))
else:
- self.groupSize[key] = self.groupSize[key] - header[rpm.RPMTAG_SIZE]
+ self.groupSize[key] = self.groupSize[key] - (header[rpm.RPMTAG_SIZE] / 1024)
self.total = self.total - header[rpm.RPMTAG_SIZE]
self.groupSelCount[key] = self.groupSelCount[key] - 1
self.ct.setEntry(header, "%-*s" % (self.length + 7, header[rpm.RPMTAG_NAME]))
@@ -197,7 +196,7 @@ class IndividualPackageWindow:
self.length = max((self.length, len(header[rpm.RPMTAG_NAME])))
self.groupCount[group] = self.groupCount[group] + 1
if header.isSelected():
- self.groupSize[group] = self.groupSize[group] + header[rpm.RPMTAG_SIZE]
+ self.groupSize[group] = self.groupSize[group] + (header[rpm.RPMTAG_SIZE] / 1024)
self.groupSelCount[group] = self.groupSelCount[group] + 1
else:
self.total = self.total + header[rpm.RPMTAG_SIZE]