Browse Source

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
pull/509/head
Yasuo Ohgaki 12 years ago
parent
commit
bd1d2d8fb0
  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