Browse Source

Merge branch 'PHP-5.5'

* PHP-5.5:
  Fixed bug #65950 Field name truncation if the field name is bigger than 32 characters
pull/509/head
Yasuo Ohgaki 13 years ago
parent
commit
37fb8e0c15
  1. 2
      ext/odbc/php_odbc_includes.h

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

Loading…
Cancel
Save