git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@32410 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2011-02-28 14:24:57 +00:00
parent b2d830cbf4
commit e1fdfb3ee4
4 changed files with 35 additions and 35 deletions

View file

@ -63,7 +63,7 @@
_selectorsCount = [sels count];
_selectors = objc_malloc (sizeof (SEL) * _selectorsCount);
_selectors = malloc (sizeof (SEL) * _selectorsCount);
for (i = 0; i < _selectorsCount; i++)
{
@ -84,7 +84,7 @@
- (void) dealloc
{
objc_free (_selectors);
free (_selectors);
[super dealloc];
}