From d6597ad37de58f6ef5c75ba00d76e1693023e96d Mon Sep 17 00:00:00 2001 From: foobar Date: Tue, 10 May 2005 13:21:36 +0000 Subject: [PATCH] - Fixed bugs #32800, #32830 (ext/odbc: Problems with 64bit systems) --- NEWS | 1 + ext/odbc/php_odbc_includes.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index dd9cc2f02d..621bae335a 100644 --- a/NEWS +++ b/NEWS @@ -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; -- 2.50.1