File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -288,7 +288,7 @@ void shutdown_executor(void) /* {{{ */
288
288
if (ZEND_MAP_PTR (op_array -> static_variables_ptr )) {
289
289
HashTable * ht = ZEND_MAP_PTR_GET (op_array -> static_variables_ptr );
290
290
if (ht ) {
291
- zend_array_release (ht );
291
+ zend_array_destroy (ht );
292
292
ZEND_MAP_PTR_SET (op_array -> static_variables_ptr , NULL );
293
293
}
294
294
}
@@ -311,7 +311,7 @@ void shutdown_executor(void) /* {{{ */
311
311
if (ZEND_MAP_PTR (op_array -> static_variables_ptr )) {
312
312
HashTable * ht = ZEND_MAP_PTR_GET (op_array -> static_variables_ptr );
313
313
if (ht ) {
314
- zend_array_release (ht );
314
+ zend_array_destroy (ht );
315
315
ZEND_MAP_PTR_SET (op_array -> static_variables_ptr , NULL );
316
316
}
317
317
}
Original file line number Diff line number Diff line change @@ -518,7 +518,7 @@ ZEND_API void destroy_op_array(zend_op_array *op_array)
518
518
if (ZEND_MAP_PTR (op_array -> static_variables_ptr )) {
519
519
HashTable * ht = ZEND_MAP_PTR_GET (op_array -> static_variables_ptr );
520
520
if (ht ) {
521
- zend_array_release (ht );
521
+ zend_array_destroy (ht );
522
522
}
523
523
}
524
524
You can’t perform that action at this time.
0 commit comments