diff options
author | Matthias Andreas Benkard <matthias@benkard.de> | 2008-08-05 12:16:01 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <matthias@benkard.de> | 2008-08-05 12:16:01 +0200 |
commit | e98a186e7cd6cded211a6a6dd8f3598c669257ac (patch) | |
tree | 6c8a184f1701f216b120098d93653f9b42fef685 | |
parent | 3e36acac1fe6eb4ee5baf4d590a6f98013a5b391 (diff) |
MLKInterpretedClosure: Fix deallocation.
-rw-r--r-- | MLKInterpretedClosure.m | 2 |
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 |