Commit a30b6a91 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

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.
parent ea9c5f79
......@@ -2916,7 +2916,7 @@ static SLTG_TypeInfoTail *SLTG_ProcessInterface(char *pBlk, ITypeInfoImpl *pTI,
paramName = NULL;
HaveOffs = TRUE;
}
else if((unsigned char)paramName[-1] == 0xff)
else if(paramName[-1] && !isalnum(paramName[-1]))
HaveOffs = TRUE;
pArg++;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment