From: Felipe Pena Date: Mon, 20 Jul 2009 00:17:24 +0000 (+0000) Subject: - Fixed bug #48057 (Only the date fields of the first row are fetched, others are... X-Git-Tag: php-5.3.1RC1~334 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=00054412e489c0f3a46ecdacf4ebc6c682111a3f;p=php - Fixed bug #48057 (Only the date fields of the first row are fetched, others are empty) patch by: info at programmiernutte dot net --- diff --git a/ext/pdo_firebird/firebird_statement.c b/ext/pdo_firebird/firebird_statement.c index ae0322780d..d98f71f370 100644 --- a/ext/pdo_firebird/firebird_statement.c +++ b/ext/pdo_firebird/firebird_statement.c @@ -363,7 +363,8 @@ static int firebird_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, /* {{ fmt = S->H->timestamp_format ? S->H->timestamp_format : PDO_FB_DEF_TIMESTAMP_FMT; } /* convert the timestamp into a string */ - *ptr = FETCH_BUF(S->fetch_buf[colno], char, *len = 80, NULL); + *len = 80; + *ptr = FETCH_BUF(S->fetch_buf[colno], char, *len, NULL); *len = strftime(*ptr, *len, fmt, &t); break; case SQL_BLOB: