projects
/
pspp-builds.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f8cbc35
)
Fix memory leak in sweep.c
author
John Darrington
<john@darrington.wattle.id.au>
Thu, 30 Sep 2010 08:59:05 +0000
(10:59 +0200)
committer
John Darrington
<john@darrington.wattle.id.au>
Thu, 30 Sep 2010 09:11:15 +0000
(11:11 +0200)
lib/linreg/sweep.c
patch
|
blob
|
history
diff --git
a/lib/linreg/sweep.c
b/lib/linreg/sweep.c
index 0dfa71fb6ac0468bcf058763d1894c5e25c287fc..b72d24a7edfebfba71201b28a34d13a374c08804 100644
(file)
--- a/
lib/linreg/sweep.c
+++ b/
lib/linreg/sweep.c
@@
-169,8
+169,8
@@
reg_sweep (gsl_matrix * A, int last_col)
}
}
gsl_matrix_free (B);
- return GSL_SUCCESS;
free (ordered_cols);
+ return GSL_SUCCESS;
}
return GSL_ENOTSQR;
}