Skip to content

Commit d89cd0b

Browse files
committed
Property names of internal classes from temporary extensins, loaded by dl(), may be emalloc-ed strings.
1 parent abf0518 commit d89cd0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_compile.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ static void zend_destroy_property_info_internal(zval *zv) /* {{{ */
122122
{
123123
zend_property_info *property_info = Z_PTR_P(zv);
124124

125-
zend_string_release_ex(property_info->name, 1);
125+
zend_string_release(property_info->name);
126126
free(property_info);
127127
}
128128
/* }}} */

0 commit comments

Comments
 (0)