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_firebird/firebird_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_firebird/firebird_statement.c')
-rw-r--r-- | ext/pdo_firebird/firebird_statement.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pdo_firebird/firebird_statement.c b/ext/pdo_firebird/firebird_statement.c index 50901841c8..337ce3fb66 100644 --- a/ext/pdo_firebird/firebird_statement.c +++ b/ext/pdo_firebird/firebird_statement.c @@ -197,8 +197,8 @@ static int firebird_stmt_describe(pdo_stmt_t *stmt, int colno) /* {{{ */ : (var->aliasname_length); col->precision = -var->sqlscale; col->maxlen = var->sqllen; - col->namelen = colname_len; - col->name = cp = emalloc(colname_len + 1); + col->name = zend_string_alloc(colname_len, 0); + cp = col->name->val; if (colname_len > var->aliasname_length) { memmove(cp, var->relname, var->relname_length); cp += var->relname_length; |