summaryrefslogtreecommitdiff
path: root/gr-fec
diff options
context:
space:
mode:
authortracierenea <tracie.perez@mavs.uta.edu>2016-04-06 12:17:28 -0500
committertracierenea <tracie.perez@mavs.uta.edu>2016-04-06 12:17:28 -0500
commitf825d6b6d96cbf22d5bf4c00de2cd79cb1b6e27a (patch)
treeda202fa8107da05a5428ffe5fc6790cd742e36e1 /gr-fec
parent1252e03f982f848082ef1e78bda922ddbedfea32 (diff)
gr-fec: free memory for info word in LDPC gen mtrx encoder
Diffstat (limited to 'gr-fec')
-rw-r--r--gr-fec/lib/ldpc_G_matrix_impl.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/gr-fec/lib/ldpc_G_matrix_impl.cc b/gr-fec/lib/ldpc_G_matrix_impl.cc
index 8ed7969f69..f12b4e96af 100644
--- a/gr-fec/lib/ldpc_G_matrix_impl.cc
+++ b/gr-fec/lib/ldpc_G_matrix_impl.cc
@@ -168,6 +168,7 @@ namespace gr {
}
// Free memory
+ gsl_matrix_free(s);
gsl_matrix_free(codeword);
}