combine-files: Eliminate VAR_NAME_LEN restriction from combine_files().
[pspp-builds.git] / src / language / stats / oneway.c
index f390a3c8aa5a3a420bb9c0cf0c207013f70f6e12..0a2b8e719d03064d83bcc16cf47b72f5cf63de83 100644 (file)
@@ -495,11 +495,13 @@ run_oneway (const struct oneway_spec *cmd,
       pvw->n_groups = categoricals_total (cats);
 
       pvw->mse = (pvw->sst - pvw->ssa) / (n - pvw->n_groups);
+
+      gsl_matrix_free (cm);
     }
 
   for (v = 0; v < cmd->n_vars; ++v)
     {
-      struct categoricals *cats = covariance_get_categoricals (ws.vws[v].cov);
+      const struct categoricals *cats = covariance_get_categoricals (ws.vws[v].cov);
 
       categoricals_done (cats);