diff options
author | Xinchen Hui <laruence@php.net> | 2015-05-06 10:51:52 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2015-05-06 10:51:52 +0800 |
commit | 55d94a453243cafc2292920e9c91bd2bc551f2be (patch) | |
tree | c00d368a3c68c2e53167b8da8c6448cdb88801e7 /ext/pdo/php_pdo_driver.h | |
parent | 9b3a92a1cad96ff88a61493bf688bc0757933642 (diff) | |
parent | 63282d3321044681e880a997a6360d4b99a07d4f (diff) | |
download | php-git-55d94a453243cafc2292920e9c91bd2bc551f2be.tar.gz |
Merge branch 'master' of git.php.net:php-src
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; |