X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/127e6df37213a1fda0dd5b44182acf678ccbbf02..9b78cda6873104b80ffdbc8b5d3965575ce0a31d:/methods/gzip.cc diff --git a/methods/gzip.cc b/methods/gzip.cc index 72e3ac909..f1c76066e 100644 --- a/methods/gzip.cc +++ b/methods/gzip.cc @@ -48,14 +48,11 @@ bool GzipMethod::Fetch(FetchItem *Itm) // Open the source and destination files FileFd From(Path,FileFd::ReadOnlyGzip); - // if the file is empty, just rename it and return - if(From.Size() == 0) - { - rename(Path.c_str(), Itm->DestFile.c_str()); - return true; - } + // FIXME add an error message saying that empty files can't be valid archives + if(From.FileSize() == 0) + return false; - FileFd To(Itm->DestFile,FileFd::WriteEmpty); + FileFd To(Itm->DestFile,FileFd::WriteAtomic); To.EraseOnFailure(); if (_error->PendingError() == true) return false;