Revert to previous behaviour of detecting names with non-alphanumeric
characters as ones with offsets, but add in a special case for an empty name.
This commit is contained in:
parent
ea9c5f7928
commit
a30b6a91a1
|
@ -2916,7 +2916,7 @@ static SLTG_TypeInfoTail *SLTG_ProcessInterface(char *pBlk, ITypeInfoImpl *pTI,
|
||||||
paramName = NULL;
|
paramName = NULL;
|
||||||
HaveOffs = TRUE;
|
HaveOffs = TRUE;
|
||||||
}
|
}
|
||||||
else if((unsigned char)paramName[-1] == 0xff)
|
else if(paramName[-1] && !isalnum(paramName[-1]))
|
||||||
HaveOffs = TRUE;
|
HaveOffs = TRUE;
|
||||||
|
|
||||||
pArg++;
|
pArg++;
|
||||||
|
|
Loading…
Reference in New Issue