Skip to content

Commit 66643f6

Browse files
committed
Use efree_size
1 parent 213b496 commit 66643f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_object_handlers.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ ZEND_API int zend_check_property_access(zend_object *zobj, zend_string *prop_inf
488488
/* }}} */
489489

490490
static void zend_property_guard_dtor(zval *el) /* {{{ */ {
491-
efree(Z_PTR_P(el));
491+
efree_size(Z_PTR_P(el), sizeof(zend_ulong));
492492
}
493493
/* }}} */
494494

0 commit comments

Comments
 (0)