]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/mmap.cc
* apt-pkg/contrib/cmdline.cc:
[apt.git] / apt-pkg / contrib / mmap.cc
index a67ab36985d6037177b2c3a907f4a187ae302e9c..2d12b6fe9091417440d5769a6dbe4839e8e795db 100644 (file)
@@ -84,8 +84,9 @@ bool MMap::Map(FileFd &Fd)
       if ((Flags & ReadOnly) != ReadOnly)
         return _error->Error("Compressed file %s can only be mapped readonly", Fd.Name().c_str());
       Base = new unsigned char[iSize];
+      SyncToFd = new FileFd();
       if (Fd.Seek(0L) == false || Fd.Read(Base, iSize) == false)
-        return false;
+        return _error->Error("Compressed file %s can't be read into mmap", Fd.Name().c_str());
       return true;
    }