Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  Fixed bug #65950 Field name truncation if the field name is bigger than 32 characters
This commit is contained in:
Yasuo Ohgaki 2013-10-26 10:42:18 +09:00
commit bd1d2d8fb0

View File

@ -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;