From 3118121aaa26f0d96520d5626c3458817bb67003 Mon Sep 17 00:00:00 2001 From: torset Date: Thu, 5 Feb 2009 08:37:28 +0000 Subject: Add free(to free the malloc) when missing --- src/matrixOperations/logm/testDoubleLogm.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/matrixOperations/logm/testDoubleLogm.c') diff --git a/src/matrixOperations/logm/testDoubleLogm.c b/src/matrixOperations/logm/testDoubleLogm.c index 44deb745..8b31b857 100644 --- a/src/matrixOperations/logm/testDoubleLogm.c +++ b/src/matrixOperations/logm/testDoubleLogm.c @@ -31,6 +31,9 @@ static void zlogmaTest(void){ zlogma(in,3,out); for(i=0;i<9;i++) printf("out[%d] = %f + %f *i\n",i,zreals(out[i]),zimags(out[i])); + + free(in); + free(out); } static int logmTest(void){ -- cgit