diff options
author | Frank M. Kromann <fmk@php.net> | 2002-02-06 22:31:23 +0000 |
---|---|---|
committer | Frank M. Kromann <fmk@php.net> | 2002-02-06 22:31:23 +0000 |
commit | 9d0f7ba3b5f153fd532b7c1054762f9c4738deb5 (patch) | |
tree | aaea4f734c80d30a5ab42623006170b4eb943d44 /ext/fbsql/php_fbsql.c | |
parent | 1121df7c45eb253ad197a2feab66689dde4512b7 (diff) | |
download | php-git-9d0f7ba3b5f153fd532b7c1054762f9c4738deb5.tar.gz |
Convert pLists to output character set before parsing the list
Diffstat (limited to 'ext/fbsql/php_fbsql.c')
-rw-r--r-- | ext/fbsql/php_fbsql.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/fbsql/php_fbsql.c b/ext/fbsql/php_fbsql.c index 75c8d11ce8..abf4bc36bb 100644 --- a/ext/fbsql/php_fbsql.c +++ b/ext/fbsql/php_fbsql.c @@ -1849,6 +1849,7 @@ static void phpfbQuery(INTERNAL_FUNCTION_PARAMETERS, char* sql, PHPFBLink* link) else { char* r = fbcmdMessage(result->metaData); + fbcrhConvertToOutputCharSet(fbcdcOutputCharacterSet(link->connection), (unsigned char *)r); if ((result->list = fbcplParse(r))) { result->rowCount = fbcplCount(result->list); |