summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-05-10 13:21:36 +0000
committerfoobar <sniper@php.net>2005-05-10 13:21:36 +0000
commitd6597ad37de58f6ef5c75ba00d76e1693023e96d (patch)
tree096f7655f16c9ae636fcf69c8238578de64c079e
parent295719fa326af59714bb6d3a99db2fb077f231e2 (diff)
downloadphp-git-d6597ad37de58f6ef5c75ba00d76e1693023e96d.tar.gz
- Fixed bugs #32800, #32830 (ext/odbc: Problems with 64bit systems)
-rw-r--r--NEWS1
-rw-r--r--ext/odbc/php_odbc_includes.h2
2 files changed, 2 insertions, 1 deletions
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;