diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2005-02-20 23:08:34 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2005-02-20 23:08:34 +0000 |
commit | 5f3dd68ac5e449acb6daeff1dced7a3a022d4e3b (patch) | |
tree | 5b60079fbefae2c9da754d35b2ed286d4e9adccf /ext/pdo_mysql/mysql_statement.c | |
parent | 7eaece85a80abec6d106cecf480cc53b833e9fa4 (diff) | |
download | php-git-5f3dd68ac5e449acb6daeff1dced7a3a022d4e3b.tar.gz |
fix for PECL bug 3530
Diffstat (limited to 'ext/pdo_mysql/mysql_statement.c')
-rwxr-xr-x | ext/pdo_mysql/mysql_statement.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_mysql/mysql_statement.c b/ext/pdo_mysql/mysql_statement.c index 025ca2bb47..a33604e68a 100755 --- a/ext/pdo_mysql/mysql_statement.c +++ b/ext/pdo_mysql/mysql_statement.c @@ -228,7 +228,7 @@ static int pdo_mysql_stmt_col_meta(pdo_stmt_t *stmt, long colno, zval *return_va if (IS_BLOB(F->flags)) { add_next_index_string(flags, "blob", 1); } - str = type_to_name_native(F->flags); + str = type_to_name_native(F->type); if (str) { add_assoc_string(return_value, "native_type", str, 1); } |