The easiest solutions are the best. Just look for attributes in object.
All checks were successful
The build was successful.
All checks were successful
The build was successful.
This commit is contained in:
parent
cd9ff68ae9
commit
519f5050b7
@ -4212,16 +4212,10 @@ static sxi32 VmByteCodeExec(
|
||||
if(SyStrncmp(pObjAttr->pAttr->sName.zString, sName.zString, sName.nByte) == 0) {
|
||||
if(pNos->iFlags != MEMOBJ_PARENTOBJ && pObjAttr->pAttr->pClass == pClass) {
|
||||
break;
|
||||
} else {
|
||||
SyHashEntry *pDerived = SyHashGet(&pClass->hDerived, (const void *)pObjAttr->pAttr->pClass->sName.zString, pObjAttr->pAttr->pClass->sName.nByte);
|
||||
if(pDerived != 0) {
|
||||
ph7_class *pSub = (ph7_class *)pDerived->pUserData;
|
||||
if(pObjAttr->pAttr->pClass == pSub) {
|
||||
} else if(pObjAttr->pAttr->pClass != pClass) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
pObjAttr = 0;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user