diff options
author | Dmitry Stogov <dmitry@zend.com> | 2015-05-05 16:19:51 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2015-05-05 16:19:51 +0300 |
commit | 70c86732cb14bad0b2539a54c16e8e845f740117 (patch) | |
tree | 102cc8c5265f03b4f0bbd28cd13f29a101893480 /ext/pdo_oci/oci_statement.c | |
parent | 275afbacd11c2f4d0dac7d450ffdf500d5eab104 (diff) | |
download | php-git-70c86732cb14bad0b2539a54c16e8e845f740117.tar.gz |
Use zend_string to represent pdo_column_data.name and avoid duplication.
Diffstat (limited to 'ext/pdo_oci/oci_statement.c')
-rw-r--r-- | ext/pdo_oci/oci_statement.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/pdo_oci/oci_statement.c b/ext/pdo_oci/oci_statement.c index e47fba513b..9efb371f6d 100644 --- a/ext/pdo_oci/oci_statement.c +++ b/ext/pdo_oci/oci_statement.c @@ -525,8 +525,7 @@ static int oci_stmt_describe(pdo_stmt_t *stmt, int colno) /* {{{ */ col->precision = scale; col->maxlen = data_size; - col->namelen = namelen; - col->name = estrndup((char *)colname, namelen); + col->name = zend_string_init((char *)colname, namelen, 0); S->cols[colno].dtype = dtype; |