You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2006/10/28 04:41:53 UTC

svn commit: r468619 - /lucene/lucy/trunk/charmonizer/src/Charmonizer.charm

Author: marvin
Date: Fri Oct 27 19:41:52 2006
New Revision: 468619

URL: http://svn.apache.org/viewvc?view=rev&rev=468619
Log:
Change sequence of events so that the OS object isn't called upon to perform
actions after it gets destroyed.

Modified:
    lucene/lucy/trunk/charmonizer/src/Charmonizer.charm

Modified: lucene/lucy/trunk/charmonizer/src/Charmonizer.charm
URL: http://svn.apache.org/viewvc/lucene/lucy/trunk/charmonizer/src/Charmonizer.charm?view=diff&rev=468619&r1=468618&r2=468619
==============================================================================
--- lucene/lucy/trunk/charmonizer/src/Charmonizer.charm (original)
+++ lucene/lucy/trunk/charmonizer/src/Charmonizer.charm Fri Oct 27 19:41:52 2006
@@ -38,11 +38,11 @@
     if (verbosity)
         printf("Cleaning up...\n");
 
-    os->destroy(os);
-    compiler->destroy(compiler);
     remove("_charm.h");
     os->remove_exe(os, "_charm_run");
     os->remove_exe(os, "_charm_stat");
+    os->destroy(os);
+    compiler->destroy(compiler);
 
     if (verbosity)
         printf("Cleanup complete.\n");