From 1bcb3884d420fe9fd87e9cd79004fb335e6618cf Mon Sep 17 00:00:00 2001 From: schnetter Date: Mon, 8 Aug 2005 14:14:18 +0000 Subject: Add missing calls to free. git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/InterpToArray/trunk@3 6ca9aeac-0e4f-0410-a746-fe4df63e9d0c --- src/interp.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/interp.c b/src/interp.c index 8ce8424..badaead 100644 --- a/src/interp.c +++ b/src/interp.c @@ -109,6 +109,7 @@ InterpToArray (CCTK_ARGUMENTS) free (coordsz); free (inputs); free (output_types); + free (outputs); } } @@ -176,6 +177,7 @@ InterpToArray (CCTK_ARGUMENTS) free (coordsz); free (inputs); free (output_types); + free (outputs); } } @@ -244,6 +246,7 @@ InterpToArray (CCTK_ARGUMENTS) free (coordsz); free (inputs); free (output_types); + free (outputs); } } @@ -314,6 +317,7 @@ InterpToArray (CCTK_ARGUMENTS) free (coordsz); free (inputs); free (output_types); + free (outputs); } } -- cgit v1.2.3