mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Fix for bug #25520
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@27822 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
dff8a9d831
commit
2f24254d4f
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2009-02-09 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/Additions/GSObjCRuntime.m: Correct error comparing method
|
||||
signatures. Fixes bug #25520
|
||||
|
||||
2009-02-04 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSBundle.m: Use pointerValue rather than
|
||||
|
|
|
@ -1129,10 +1129,10 @@ GSSelectorTypesMatch(const char *types1, const char *types2)
|
|||
/* Ignore structure name yet compare layout. */
|
||||
if (*types1 == '{' && *types2 == '{')
|
||||
{
|
||||
while (*types1 != '=')
|
||||
while (*types1 != '=' && *types1 != '}')
|
||||
types1++;
|
||||
|
||||
while (*types2 != '=')
|
||||
while (*types2 != '=' && *types2 != '}')
|
||||
types2++;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue