diff options
Diffstat (limited to 'ext/pdo/php_pdo_driver.h')
-rw-r--r-- | ext/pdo/php_pdo_driver.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/pdo/php_pdo_driver.h b/ext/pdo/php_pdo_driver.h index 407d1baa82..efa21a4e14 100644 --- a/ext/pdo/php_pdo_driver.h +++ b/ext/pdo/php_pdo_driver.h @@ -527,11 +527,10 @@ static inline pdo_dbh_object_t *php_pdo_dbh_fetch_object(zend_object *obj) { /* describes a column */ struct pdo_column_data { - char *name; + zend_string *name; size_t maxlen; zend_ulong precision; enum pdo_param_type param_type; - size_t namelen; /* don't touch this unless your name is dbdo */ void *dbdo_data; |