Skip to content

Commit

Permalink
Fix for bug #25520
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@27822 72102866-910b-0410-8b05-ffd578937521
  • Loading branch information
rfm committed Feb 9, 2009
1 parent dff8a9d commit 2f24254
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions Source/Additions/GSObjCRuntime.m
Original file line number Diff line number Diff line change
Expand Up @@ -1129,10 +1129,10 @@ Therefor we refrain from simply using class_getClassMethod().
/* Ignore structure name yet compare layout. */
if (*types1 == '{' && *types2 == '{')
{
while (*types1 != '=')
while (*types1 != '=' && *types1 != '}')
types1++;

while (*types2 != '=')
while (*types2 != '=' && *types2 != '}')
types2++;
}

Expand Down

0 comments on commit 2f24254

Please sign in to comment.