Fix another PH7 conceptual bug. Reverse this logic.
ステータスチェックはすべて成功しました
The build was successful.

このコミットが含まれているのは:
Rafal Kupiec 2019-05-18 13:42:30 +02:00
コミット a25b163af6
署名者: belliash
GPGキーID: 4E829243E0CFE6B4

ファイルの表示

@ -243,7 +243,7 @@ PH7_PRIVATE sxi32 PH7_ClassInherit(ph7_vm *pVm, ph7_class *pSub, ph7_class *pBas
SyString *pName;
sxi32 rc;
/* Install in the derived hashtable */
rc = SyHashInsert(&pBase->hDerived, (const void *)SyStringData(&pSub->sName), SyStringLength(&pSub->sName), pSub);
rc = SyHashInsert(&pSub->hDerived, (const void *)SyStringData(&pBase->sName), SyStringLength(&pBase->sName), pBase);
if(rc != SXRET_OK) {
return rc;
}