Set correct variable type if NULL or not set at all.
Tüm denetlemeler başarılı oldu
The build was successful.

Bu işleme şunda yer alıyor:
2019-06-07 18:57:02 +02:00
ebeveyn 343c25ca77
işleme 43a1f135cc

Dosyayı Görüntüle

@@ -401,8 +401,11 @@ PH7_PRIVATE sxi32 PH7_CheckVarCompat(ph7_value *pObj, int nType) {
* destination are of the compatible data types.
*/
PH7_PRIVATE sxi32 PH7_MemObjSafeStore(ph7_value *pSrc, ph7_value *pDest) {
if(pDest->nType == 0 || pDest->nType == pSrc->nType) {
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;
}
} else if(pDest->nType & MEMOBJ_MIXED) {
if(pDest->nType & MEMOBJ_HASHMAP) {
/* mixed[] */