ext/pdo: Remove refcount field from _pdo_stmt_t (#17622)

It is unused, and removing it saves 8 bytes on 64 bits systems.
This commit is contained in:
Gina Peter Banyard 2025-01-29 19:33:06 +00:00 committed by GitHub
parent e1f3249285
commit 8d95b3da89
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;