From 809ce1fb820f150cab76016be33a98da2d1d9cde Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 16 Dec 2006 14:00:00 +0000 Subject: [PATCH] fix some leak issues --- ruamoko/lib/Entity.r | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ruamoko/lib/Entity.r b/ruamoko/lib/Entity.r index c1192c304..a6960df19 100644 --- a/ruamoko/lib/Entity.r +++ b/ruamoko/lib/Entity.r @@ -22,11 +22,14 @@ function PR_FindFunction (string func) = #0; - (id) init { - return [self initWithEntity: spawn ()]; + self = [self initWithEntity: spawn ()]; + [self own]; + return self; } - (id) initWithEntity: (entity)e { + self = [super init]; ent = e; ent.@this = self; return self; @@ -34,7 +37,7 @@ function PR_FindFunction (string func) = #0; - (void) dealloc { - if (own) + if (own && ent) remove (ent); [super dealloc]; }