From: John Darrington Date: Fri, 29 Mar 2013 18:47:53 +0000 (+0100) Subject: Revert experimentà X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d94f5d42293b70ceb86aa03a36024565449e880;p=pspp Revert experimentà --- diff --git a/src/data/casereader.c b/src/data/casereader.c index e50096f5e8..5695d7cfa8 100644 --- a/src/data/casereader.c +++ b/src/data/casereader.c @@ -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; }