1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Remove pointless call to zval_ptr_dtor() in sqlite3 (#17906)

This is IS_LONG.
This commit is contained in:
Niels Dossche
2025-02-23 21:04:47 +01:00
committed by GitHub
parent a0e1ce1b57
commit 1fa15abe92

View File

@@ -2122,7 +2122,6 @@ static int php_sqlite3_authorizer(void *autharg, int action, const char *arg1, c
/* Free local return and argument values */ /* Free local return and argument values */
zval_ptr_dtor(&retval); zval_ptr_dtor(&retval);
zval_ptr_dtor(&argv[0]);
zval_ptr_dtor(&argv[1]); zval_ptr_dtor(&argv[1]);
zval_ptr_dtor(&argv[2]); zval_ptr_dtor(&argv[2]);
zval_ptr_dtor(&argv[3]); zval_ptr_dtor(&argv[3]);