- Fix problem Thies reported. We by mistake separated variables which were

being fetched for read only.
This commit is contained in:
Andi Gutmans 1999-11-30 17:10:11 +00:00
parent 2df67b7c9e
commit 08304a3c93

View File

@ -688,7 +688,7 @@ static inline void zend_fetch_dimension_address(znode *result, znode *op1, znode
convert_to_long(&tmp);
offset = &tmp;
}
if (!container->is_ref) {
if (!container->is_ref && type!=BP_VAR_R) {
SEPARATE_ZVAL(container_ptr);
}
container = *container_ptr;