Revert experimentÃ
authorJohn Darrington <john@darrington.wattle.id.au>
Fri, 29 Mar 2013 18:47:53 +0000 (19:47 +0100)
committerJohn Darrington <john@darrington.wattle.id.au>
Fri, 29 Mar 2013 18:47:53 +0000 (19:47 +0100)
src/data/casereader.c

index e50096f5e8cc10980ec93b5b682042072466d2c9..5695d7cfa8d7665be98ab8d8c4031b7a698fbb02 100644 (file)
@@ -1,4 +1,4 @@
-/* PSPP - a program for statistical analysis.
+/* pspp - a program for statistical analysis.
    Copyright (C) 2007, 2009, 2010, 2013 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
@@ -91,10 +91,10 @@ casereader_destroy (struct casereader *reader)
   bool ok = true;
   if (reader != NULL)
     {
-      //      reader->class->destroy (reader, reader->aux);
-      // ok = taint_destroy (reader->taint);
-      // caseproto_unref (reader->proto);
-      //  free (reader);
+      reader->class->destroy (reader, reader->aux);
+      ok = taint_destroy (reader->taint);
+      caseproto_unref (reader->proto);
+      free (reader);
     }
   return ok;
 }