diff options
author | Michael Vogt <mvo@debian.org> | 2014-02-28 20:28:08 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2014-02-28 20:28:08 +0100 |
commit | 8c55d4d117f1641650cd832c957ccdbf71b04893 (patch) | |
tree | aa69ee9a261598e565619fd39e2f4c131106713a /apt-pkg | |
parent | 821197c1198547077a8a0de5ebbb1b355ec33572 (diff) | |
parent | ed9665aedf77b3b8345bd4ed33de7885738e29f0 (diff) |
Merge branch 'debian/sid' into ubuntu/master
Diffstat (limited to 'apt-pkg')
-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; |