]> 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 160718ea5ae503caf1848afd63514fbeae0d9a4d..2d12b6fe9091417440d5769a6dbe4839e8e795db 100644 (file)
@@ -84,6 +84,7 @@ 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 _error->Error("Compressed file %s can't be read into mmap", Fd.Name().c_str());
       return true;