attempt fix for bug #29910

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@30425 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2010-05-19 07:01:23 +00:00
parent 83679d7771
commit b4c85fde93
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2010-05-19 Richard Frith-Macdonald <rfm@gnu.org>
* Source/Additions/GSObjCRuntime.m: GSObjCMethodNames() fix for
bug #29910
2010-05-10 Adam Fedor <fedor@gnu.org> 2010-05-10 Adam Fedor <fedor@gnu.org>
* Fix typos, clarify unstable release documentation * Fix typos, clarify unstable release documentation

View file

@ -273,7 +273,7 @@ GSObjCMethodNames(id obj, BOOL recurse)
NSString *name; NSString *name;
name = [[NSString alloc] initWithFormat: @"%s", name = [[NSString alloc] initWithFormat: @"%s",
method_getName(meth[count])]; sel_getName(method_getName(meth[count]))];
[set addObject: name]; [set addObject: name];
[name release]; [name release];
} }