* Source/GSFFCallInvocation.m

* Source/GSFFIInvocation.m (gs_protocol_selector): Skip '-'
        for negative offsets to avoid issues with pre gcc 3.4 generated
        signatures.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@19975 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
David Ayers 2004-09-02 16:35:44 +00:00
parent 536ccce9a8
commit d5e6b59325
3 changed files with 15 additions and 0 deletions

View file

@ -1,3 +1,10 @@
2004-09-02 David Ayers <d.ayers@inode.at>
* Source/GSFFCallInvocation.m
* Source/GSFFIInvocation.m (gs_protocol_selector): Skip '-' for
negative offsets to avoid issues with pre gcc 3.4 generated
signatures.
2004-08-26 Adam Fedor <fedor@gnu.org>
* Source/NSProcessInfo.m ([NSProcessInfo +load]): Get environment

View file

@ -726,6 +726,10 @@ gs_protocol_selector(const char *types)
}
while (*types != '\0')
{
if (*types == '-' )
{
types++;
}
if (*types == '+' || isdigit(*types))
{
types = objc_skip_offset(types);

View file

@ -375,6 +375,10 @@ gs_protocol_selector(const char *types)
}
while (*types != '\0')
{
if (*types == '-')
{
types++;
}
if (*types == '+' || isdigit(*types))
{
types = objc_skip_offset(types);