Fix memory leak in scratch reader.
authorBen Pfaff <blp@gnu.org>
Sun, 7 May 2006 05:48:06 +0000 (05:48 +0000)
committerBen Pfaff <blp@gnu.org>
Sun, 7 May 2006 05:48:06 +0000 (05:48 +0000)
src/data/ChangeLog
src/data/scratch-reader.c

index e323b22df75d3fc0b6f94b64d401389c28e2605b..a6e6b00408499249b0f01b71309a85a7d208e673 100644 (file)
@@ -1,3 +1,10 @@
+Sat May  6 22:46:47 2006  Ben Pfaff  <blp@gnu.org>
+
+       * scratch-reader.c (scratch_reader_read_case): Copy into existing
+       case passed as argument instead of initializing the argument as a
+       case.  Fixes memory leak that showed up in
+       tests/command/aggregate.sh with scratch files.
+
 Sat May  6 22:45:55 2006  Ben Pfaff  <blp@gnu.org>
 
        * procedure.c (proc_done): Destroy default_dict, to fix memory
index e329d1c8184b04e2420712b92ac7c6330b2420dd..cb94e245abf6c985fc7fed7c1bd3a6d9312a8f16 100644 (file)
    02110-1301, USA. */
 
 #include <config.h>
+
 #include "scratch-reader.h"
+
 #include <stdlib.h>
+
 #include "casefile.h"
 #include "dictionary.h"
-#include <libpspp/message.h>
 #include "file-handle-def.h"
 #include "scratch-handle.h"
+#include <data/case.h>
+#include <libpspp/message.h>
+
 #include "xalloc.h"
 
 #include "gettext.h"
@@ -70,12 +75,22 @@ scratch_reader_open (struct file_handle *fh, struct dictionary **dict)
   return reader;
 }
 
-/* Reads a case from READER into C.
+/* Reads a case from READER and copies it into C.
    Returns true if successful, false on error or at end of file. */
 bool
 scratch_reader_read_case (struct scratch_reader *reader, struct ccase *c)
 {
-  return casereader_read (reader->casereader, c);
+  struct ccase tmp;
+  if (casereader_read (reader->casereader, &tmp)) 
+    {
+      case_copy (c, 0, &tmp, 0,
+                 casefile_get_value_cnt (
+                   casereader_get_casefile (reader->casereader)));
+      case_destroy (&tmp);
+      return true;
+    }
+  else
+    return false;
 }
 
 /* Returns true if an I/O error occurred on READER, false otherwise. */