Kaynağa Gözat

fix memleak

Samuel Thibault 8 yıl önce
ebeveyn
işleme
36b28d020e
1 değiştirilmiş dosya ile 3 ekleme ve 1 silme
  1. 3 1
      examples/lu/lu_example.c

+ 3 - 1
examples/lu/lu_example.c

@@ -422,13 +422,15 @@ int main(int argc, char **argv)
 		if (pivot)
 		{
 			pivot_saved_matrix(ipiv);
-			free(ipiv);
 		}
 
 		check_result();
 	}
 #endif
 
+	if (pivot)
+		free(ipiv);
+
 	starpu_free_flags(A, (size_t)size*size*sizeof(TYPE), STARPU_MALLOC_PINNED|STARPU_MALLOC_SIMULATION_FOLDED);
 
 	starpu_cublas_shutdown();