diff options
author | foobar <sniper@php.net> | 2005-05-10 13:21:36 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-05-10 13:21:36 +0000 |
commit | d6597ad37de58f6ef5c75ba00d76e1693023e96d (patch) | |
tree | 096f7655f16c9ae636fcf69c8238578de64c079e | |
parent | 295719fa326af59714bb6d3a99db2fb077f231e2 (diff) | |
download | php-git-d6597ad37de58f6ef5c75ba00d76e1693023e96d.tar.gz |
- Fixed bugs #32800, #32830 (ext/odbc: Problems with 64bit systems)
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | ext/odbc/php_odbc_includes.h | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -12,6 +12,7 @@ PHP 4 NEWS - Fixed bug #32932 (Oracle LDAP: ldap_get_entries invalid pointer). (Jani) - Fixed bug #32813 (parse_url() does not handle scheme-only urls properly). (Ilia) - Fixed bug #32802 (General cookie overrides more specific cookie). (Ilia) +- Fixed bugs #32800, #32830 (ext/odbc: Problems with 64bit systems). (Jani) - Fixed bug #32730 (ext/crack.c fails to compile with cracklib-2.8.3). (Jani) - Fixed bug #32670 (foreach() does not issue warning on unset array arg). (Ilia) - Fixed bug #32699 (pg_affected_rows() was defined when it was not available). diff --git a/ext/odbc/php_odbc_includes.h b/ext/odbc/php_odbc_includes.h index f1cfbec2d2..21460103ea 100644 --- a/ext/odbc/php_odbc_includes.h +++ b/ext/odbc/php_odbc_includes.h @@ -216,7 +216,7 @@ typedef struct odbc_connection { typedef struct odbc_result_value { char name[32]; char *value; - long int vallen; + SDWORD vallen; SDWORD coltype; } odbc_result_value; |