]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/cachefile.cc
Made apt-cache regenerate its cache in memory
[apt.git] / apt-pkg / cachefile.cc
index 285eb310f8f1108feb2b8f16837e74e029287307..88c3fa81a4ed154988ea89455b72e0dec2463d0f 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: cachefile.cc,v 1.1 1999/04/18 06:36:36 jgg Exp $
+// $Id: cachefile.cc,v 1.2 1999/04/19 02:35:38 jgg Exp $
 /* ######################################################################
    
    CacheFile - Simple wrapper class for opening, generating and whatnot
@@ -86,10 +86,9 @@ bool pkgCacheFile::Open(OpProgress &Progress,bool WithLock)
    
    // Create the dependency cache
    Cache = new pkgDepCache(*Map,Progress);
+   Progress.Done();
    if (_error->PendingError() == true)
       return false;
-
-   Progress.Done();
    
    return true;
 }