summaryrefslogtreecommitdiff
path: root/MLKCompiledProcedure.m
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-08-07 20:47:37 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-08-07 20:47:37 +0200
commita277a977dc9d036dba3498ee5459803da1cc2c8d (patch)
tree6f6948e4f35bcd367ed95164125b6909282c0a73 /MLKCompiledProcedure.m
parent58e11e991bf74232f7fe316b2693f46892bb0af9 (diff)
Implement -finalize methods where appropriate.
Diffstat (limited to 'MLKCompiledProcedure.m')
-rw-r--r--MLKCompiledProcedure.m6
1 files changed, 6 insertions, 0 deletions
diff --git a/MLKCompiledProcedure.m b/MLKCompiledProcedure.m
index 1dfac0f..ee8664b 100644
--- a/MLKCompiledProcedure.m
+++ b/MLKCompiledProcedure.m
@@ -89,4 +89,10 @@
free (_code);
[super dealloc];
}
+
+-(void) finalize
+{
+ // FIXME: Can we really just use free() here?
+ free (_code);
+}
@end