From 81da53fccd462162fc1adba19e330f4cca45b345 Mon Sep 17 00:00:00 2001 From: Niels Dossche <7771979+nielsdos@users.noreply.github.com> Date: Thu, 18 Jul 2024 17:32:49 +0200 Subject: [PATCH] Convert forgotten efree to zend_string_release Follow-up for 2d029efd945bdcb7043d50bd78842bcdb08cba29 --- ext/xsl/php_xsl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/xsl/php_xsl.c b/ext/xsl/php_xsl.c index 0807eb88b65..dec7eb501eb 100644 --- a/ext/xsl/php_xsl.c +++ b/ext/xsl/php_xsl.c @@ -99,7 +99,7 @@ void xsl_objects_free_storage(zend_object *object) } if (intern->profiling) { - efree(intern->profiling); + zend_string_release(intern->profiling); } } /* }}} */