1
0
mirror of https://github.com/php/php-src.git synced 2026-04-14 03:22:58 +02:00

Fix warning

This commit is contained in:
Marcus Boerger
2003-08-02 11:39:15 +00:00
parent be9986eb8e
commit 4fa6eac1f8

View File

@@ -3422,10 +3422,11 @@ int zend_unset_dim_obj_handler(ZEND_OPCODE_HANDLER_ARGS)
}
break;
case ZEND_UNSET_OBJ:
ht = NULL;
if (Z_TYPE_PP(container) == IS_OBJECT) {
Z_OBJ_HT_P(*container)->unset_property(*container, offset TSRMLS_CC);
}
default:
ht = NULL;
break;
}
if (ht) {