]> git.saurik.com Git - apt.git/blobdiff - methods/gzip.cc
* methods/{gzip,bzip2}.cc:
[apt.git] / methods / gzip.cc
index 5b9b66b50375769f1d528b11c00d116c03e0841d..22cae94244b62e067717d9a2cdf77b832ed07ef7 100644 (file)
@@ -48,12 +48,9 @@ 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.Size() == 0)
+      return false;
 
    FileFd To(Itm->DestFile,FileFd::WriteAtomic);   
    To.EraseOnFailure();