fix retain/release errors

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@29770 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2010-02-26 06:53:47 +00:00
parent 4bd2606d7d
commit 2de66f9c28
3 changed files with 13 additions and 13 deletions

View file

@ -460,7 +460,7 @@ static Class messagePortClass = 0;
}
M_UNLOCK(this->lock);
}
DESTROY(self);
RELEASE(self);
}
- (BOOL) isEqual: (id)anObject
@ -917,7 +917,7 @@ again:
forMode: mode
all: YES];
}
DESTROY(self);
RELEASE(self);
}
@ -1131,8 +1131,8 @@ again:
}
}
M_UNLOCK(this->lock);
DESTROY(self);
RELEASE(h);
RELEASE(self);
return sent;
}