mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
* 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:
parent
536ccce9a8
commit
d5e6b59325
3 changed files with 15 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue