aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschnetter <schnetter@6ca9aeac-0e4f-0410-a746-fe4df63e9d0c>2005-08-08 14:14:18 +0000
committerschnetter <schnetter@6ca9aeac-0e4f-0410-a746-fe4df63e9d0c>2005-08-08 14:14:18 +0000
commit1bcb3884d420fe9fd87e9cd79004fb335e6618cf (patch)
tree61371565ca6775623e0cb5c65d347869b72cd03e
parentb41f1e06fcb0ac02580567bf20598f2c51f5aa60 (diff)
Add missing calls to free.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/InterpToArray/trunk@3 6ca9aeac-0e4f-0410-a746-fe4df63e9d0c
-rw-r--r--src/interp.c4
1 files changed, 4 insertions, 0 deletions
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);
}
}