From cf7dd860b3dc5796b7186244dec0400aa38e3293 Mon Sep 17 00:00:00 2001 From: Gina Peter Banyard Date: Wed, 29 Jan 2025 13:57:34 +0000 Subject: [PATCH] ext/pdo: Remove refcount field from _pdo_stmt_t It is unused --- ext/pdo/php_pdo_driver.h | 1 - 1 file changed, 1 deletion(-) diff --git a/ext/pdo/php_pdo_driver.h b/ext/pdo/php_pdo_driver.h index f3424071b30dc..cb483a6bf6b08 100644 --- a/ext/pdo/php_pdo_driver.h +++ b/ext/pdo/php_pdo_driver.h @@ -605,7 +605,6 @@ struct _pdo_stmt_t { /* for lazy fetches, we always return the same lazy object handle. * Let's keep it here. */ zval lazy_object_ref; - zend_ulong refcount; /* defaults for fetches */ enum pdo_fetch_type default_fetch_type;