From 51bf4ef2d646251d2c94b68fdece7b64cabd15ec Mon Sep 17 00:00:00 2001 From: Niels Dossche <7771979+nielsdos@users.noreply.github.com> Date: Sun, 23 Feb 2025 16:33:27 +0100 Subject: [PATCH] Remove pointless call to zval_ptr_dtor() in sqlite3 This is IS_LONG. --- ext/sqlite3/sqlite3.c | 1 - 1 file changed, 1 deletion(-) diff --git a/ext/sqlite3/sqlite3.c b/ext/sqlite3/sqlite3.c index 92621b9c3c084..465ad14709ece 100644 --- a/ext/sqlite3/sqlite3.c +++ b/ext/sqlite3/sqlite3.c @@ -2122,7 +2122,6 @@ static int php_sqlite3_authorizer(void *autharg, int action, const char *arg1, c /* Free local return and argument values */ zval_ptr_dtor(&retval); - zval_ptr_dtor(&argv[0]); zval_ptr_dtor(&argv[1]); zval_ptr_dtor(&argv[2]); zval_ptr_dtor(&argv[3]);