diff options
author | Michael Vogt <mvo@debian.org> | 2014-02-27 16:46:05 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2014-02-27 22:34:57 +0100 |
commit | ed9665aedf77b3b8345bd4ed33de7885738e29f0 (patch) | |
tree | 8fa63b4e39e614852fcf9a2047ed2e2aa8b3926d /apt-pkg | |
parent | fc104da6a583736223b2f941e43a05ea26b63a7d (diff) |
initial version of apt-helper
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; |