]> git.saurik.com Git - apt.git/commitdiff
* methods/gzip.cc:
authorMichael Vogt <michael.vogt@ubuntu.com>
Sat, 30 Sep 2006 12:14:04 +0000 (14:14 +0200)
committerMichael Vogt <michael.vogt@ubuntu.com>
Sat, 30 Sep 2006 12:14:04 +0000 (14:14 +0200)
  - just stop on empty files, don't call the extractor
* debian/changelog:
  - merged the last debian upload
  - added entry for extractor

debian/changelog
methods/gzip.cc

index 385c8ca23b7048ff06d04ca1b53192e3a5f98941..a828d02c129f93341242ebda60440d389f8e66cd 100644 (file)
@@ -1,3 +1,10 @@
+apt (0.6.46.1) unstable; urgency=low
+
+  * methods/gzip.cc:
+    - deal with empty files 
+
+ --
+
 apt (0.6.46) unstable; urgency=low
 
   * debian/control:
@@ -32,7 +39,7 @@ apt (0.6.46) unstable; urgency=low
     - reverted MMap use in the tagfile because it does not work 
       across pipes (closes: #383487) 
   
- --
+ -- Michael Vogt <mvo@debian.org>  Thu, 21 Sep 2006 10:25:03 +0200
 
 apt (0.6.45) unstable; urgency=low
 
index 55ff332701b94105de7cc6207b4a4d59e3db7bd2..a8e816bf34b9b31b843fdc53d8a3c8d7bd399f37 100644 (file)
@@ -52,6 +52,13 @@ bool GzipMethod::Fetch(FetchItem *Itm)
    // Open the source and destination files
    FileFd From(Path,FileFd::ReadOnly);
 
+   // if the file is empty, just rename it and return
+   if(From.Size() == 0) 
+   {
+      Rename(Path, Itm->DestFile);
+      return true;
+   }
+
    int GzOut[2];   
    if (pipe(GzOut) < 0)
       return _error->Errno("pipe",_("Couldn't open pipe for %s"),Prog);