summaryrefslogtreecommitdiff
path: root/MLKInterpretedClosure.m
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-08-05 12:16:01 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-08-05 12:16:01 +0200
commite98a186e7cd6cded211a6a6dd8f3598c669257ac (patch)
tree6c8a184f1701f216b120098d93653f9b42fef685 /MLKInterpretedClosure.m
parent3e36acac1fe6eb4ee5baf4d590a6f98013a5b391 (diff)
MLKInterpretedClosure: Fix deallocation.
Diffstat (limited to 'MLKInterpretedClosure.m')
-rw-r--r--MLKInterpretedClosure.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/MLKInterpretedClosure.m b/MLKInterpretedClosure.m
index fd7fb19..881c76b 100644
--- a/MLKInterpretedClosure.m
+++ b/MLKInterpretedClosure.m
@@ -88,10 +88,10 @@ static MLKSymbol *PROGN;
-(void) dealloc
{
- [super dealloc];
LDESTROY (bodyForm);
LDESTROY (lambdaListName);
LDESTROY (context);
LDESTROY (environment);
+ [super dealloc];
}
@end