diff options
author | Michael Vogt <mvo@debian.org> | 2014-02-27 16:46:05 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2014-02-27 23:27:11 +0100 |
commit | e43a426e5d402d36eb180935fbbf1430a4a86e3f (patch) | |
tree | 3e64fc090c94e443097f7f5acfeb6e1c0e19bf05 /apt-pkg/acquire-item.cc | |
parent | fc104da6a583736223b2f941e43a05ea26b63a7d (diff) |
initial version of apt-helper
Diffstat (limited to 'apt-pkg/acquire-item.cc')
-rw-r--r-- | apt-pkg/acquire-item.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index 36bb48382..de03011bf 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -2201,7 +2201,7 @@ pkgAcqFile::pkgAcqFile(pkgAcquire *Owner,string URI,string Hash, if (stat(DestFile.c_str(),&Buf) == 0) { // Hmm, the partial file is too big, erase it - if ((unsigned long long)Buf.st_size > Size) + if ((Size > 0) && (unsigned long long)Buf.st_size > Size) unlink(DestFile.c_str()); else PartialSize = Buf.st_size; |