X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/ab588494d571f7bd30a0f525864241c760ab74fa..3d17b9ffc7c5a417d69916c282f4756cc7e938d2:/methods/bzip2.cc diff --git a/methods/bzip2.cc b/methods/bzip2.cc index c668141a2..42932dded 100644 --- a/methods/bzip2.cc +++ b/methods/bzip2.cc @@ -56,9 +56,8 @@ bool Bzip2Method::Fetch(FetchItem *Itm) // Open the source and destination files FileFd From(Path,FileFd::ReadOnly); - // FIXME add an error message saying that empty files can't be valid archives - if(From.Size() == 0) - return false; + if(From.FileSize() == 0) + return _error->Error(_("Empty files can't be valid archives")); int GzOut[2]; if (pipe(GzOut) < 0)