Browse Source

Fixed a memory leak

pre-master-46
Francesco Lannutti 6 years ago
committed by Holger Vogt
parent
commit
613ae18db9
  1. 1
      src/maths/KLU/klusmp.c

1
src/maths/KLU/klusmp.c

@ -136,6 +136,7 @@ void SMPconvertCOOtoCSC (SMPmatrix *Matrix)
MatrixCOO [i].group = 0 ;
current = temp ;
temp = temp->next ;
free (current->pointer) ;
free (current) ;
current = NULL ;
i++ ;

Loading…
Cancel
Save