mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Fixed bug #65950 Field name truncation if the field name is bigger than 32 characters
This commit is contained in:
parent
1f5b1cfb2b
commit
e50eb1ce34
2 changed files with 5 additions and 1 deletions
4
NEWS
4
NEWS
|
@ -16,6 +16,10 @@ PHP NEWS
|
|||
- FTP:
|
||||
. Fixed bug #65667 (ftp_nb_continue produces segfault). (Philip Hofstetter)
|
||||
|
||||
- ODBC
|
||||
. Fixed bug #65950 (Field name truncation if the field name is bigger than
|
||||
32 characters). (patch submitted by: michael dot y at zend dot com, Yasuo)
|
||||
|
||||
- Sockets:
|
||||
. Fixed bug #65808 (the socket_connect() won't work with IPv6 address).
|
||||
(Mike)
|
||||
|
|
|
@ -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…
Add table
Add a link
Reference in a new issue