summaryrefslogtreecommitdiff
path: root/src/matrixOperations/chol/schola.c
diff options
context:
space:
mode:
authortorset2009-02-05 08:37:28 +0000
committertorset2009-02-05 08:37:28 +0000
commit3118121aaa26f0d96520d5626c3458817bb67003 (patch)
tree079be34beb2abf6b03c7dea4fb037538c7661e43 /src/matrixOperations/chol/schola.c
parent90daea74ec2e71b6d740f870663d768d062da7ae (diff)
downloadscilab2c-3118121aaa26f0d96520d5626c3458817bb67003.tar.gz
scilab2c-3118121aaa26f0d96520d5626c3458817bb67003.tar.bz2
scilab2c-3118121aaa26f0d96520d5626c3458817bb67003.zip
Add free(to free the malloc) when missing
Diffstat (limited to 'src/matrixOperations/chol/schola.c')
-rw-r--r--src/matrixOperations/chol/schola.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/matrixOperations/chol/schola.c b/src/matrixOperations/chol/schola.c
index 1c9e9a6e..79c739b9 100644
--- a/src/matrixOperations/chol/schola.c
+++ b/src/matrixOperations/chol/schola.c
@@ -46,7 +46,7 @@ void schola(float * in, int size, float *out){
out[j+i*size]=0;
}
}
-
+ free(tmp);
#else
/* Do not use Lapack functions*/
int i=0, j=0, k=0;