Set data type to void, not just NULL.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-06-08 13:59:44 +02:00
parent 6c277c1eca
commit fdba2c0a5c
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 5 additions and 1 deletions

View File

@ -404,7 +404,11 @@ PH7_PRIVATE sxi32 PH7_MemObjSafeStore(ph7_value *pSrc, ph7_value *pDest) {
if(pDest->nType == 0 || pDest->nType == MEMOBJ_NULL || pDest->nType == pSrc->nType) {
PH7_MemObjStore(pSrc, pDest);
if(pDest->nType == 0 || pDest->nType == MEMOBJ_NULL) {
pDest->nType = pSrc->nType;
if(pSrc->nType == MEMOBJ_NULL) {
pDest->nType = MEMOBJ_VOID;
} else {
pDest->nType = pSrc->nType;
}
}
} else if(pDest->nType & MEMOBJ_MIXED) {
if(pDest->nType & MEMOBJ_HASHMAP) {