Revert 02471b4ccb.
已通過所有檢查
The build was successful.

This commit is contained in:
Rafal Kupiec 2019-05-29 18:46:31 +02:00
父節點 a5fb8ff8be
當前提交 5e166492d5
簽署人: belliash
GPG 金鑰 ID: 4E829243E0CFE6B4

查看文件

@ -282,11 +282,9 @@ PH7_PRIVATE sxi32 PH7_ClassInherit(ph7_vm *pVm, ph7_class *pSub, ph7_class *pBas
}
}
/* Install the method */
if(pMeth->iProtection != PH7_CLASS_PROT_PRIVATE) {
rc = SyHashInsert(&pSub->hMethod, (const void *)pName->zString, pName->nByte, pMeth);
if(rc != SXRET_OK) {
return rc;
}
rc = SyHashInsert(&pSub->hMethod, (const void *)pName->zString, pName->nByte, pMeth);
if(rc != SXRET_OK) {
return rc;
}
}
/* Mark first inherited class as direct subclass */