summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2018-02-02 18:49:35 -0500
committerJaron Kent-Dobias <jaron@kent-dobias.com>2018-02-02 18:49:35 -0500
commitda28d64d45984364b6cd08ed5fb9324998cf496b (patch)
tree25275848c407d5fcab7ec4470cfb0e7a87263b36
parent01584a2f230b8e9a5367580cb5f457692df347dd (diff)
downloadc++-da28d64d45984364b6cd08ed5fb9324998cf496b.tar.gz
c++-da28d64d45984364b6cd08ed5fb9324998cf496b.tar.bz2
c++-da28d64d45984364b6cd08ed5fb9324998cf496b.zip
fixed rng free
-rw-r--r--src/wolff.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wolff.c b/src/wolff.c
index d577b00..67c05a5 100644
--- a/src/wolff.c
+++ b/src/wolff.c
@@ -182,6 +182,7 @@ int main(int argc, char *argv[]) {
free(s);
free(H);
graph_free(h);
+ gsl_rng_free(r);
return 0;
}