From e50eb1ce3408d15cd26fd88203c68f52e59f6b0b Mon Sep 17 00:00:00 2001 From: Yasuo Ohgaki Date: Sat, 26 Oct 2013 10:31:21 +0900 Subject: Fixed bug #65950 Field name truncation if the field name is bigger than 32 characters --- ext/odbc/php_odbc_includes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/odbc/php_odbc_includes.h') diff --git a/ext/odbc/php_odbc_includes.h b/ext/odbc/php_odbc_includes.h index ca237c0537..c00583b16a 100644 --- a/ext/odbc/php_odbc_includes.h +++ b/ext/odbc/php_odbc_includes.h @@ -232,7 +232,7 @@ typedef struct odbc_connection { } odbc_connection; typedef struct odbc_result_value { - char name[32]; + char name[256]; char *value; SQLLEN vallen; SQLLEN coltype; -- cgit v1.2.1