diff options
author | Ondřej Surý <ondrej@sury.org> | 2011-08-19 10:22:38 +0200 |
---|---|---|
committer | Ondřej Surý <ondrej@sury.org> | 2011-08-19 10:22:38 +0200 |
commit | f452a2b3e4e4279b27594a8ddb66525442d59227 (patch) | |
tree | d05cb62c5515ada33076d3cc3e49b664733a478c /ext/pdo_odbc | |
parent | 038ba12e8724d537040e88ec794354b0c063f0a6 (diff) | |
download | php-f452a2b3e4e4279b27594a8ddb66525442d59227.tar.gz |
Imported Upstream version 5.3.7upstream/5.3.7
Diffstat (limited to 'ext/pdo_odbc')
-rwxr-xr-x | ext/pdo_odbc/config.m4 | 2 | ||||
-rwxr-xr-x | ext/pdo_odbc/odbc_driver.c | 4 | ||||
-rwxr-xr-x | ext/pdo_odbc/odbc_stmt.c | 4 | ||||
-rwxr-xr-x | ext/pdo_odbc/pdo_odbc.c | 7 | ||||
-rwxr-xr-x | ext/pdo_odbc/php_pdo_odbc_int.h | 4 |
5 files changed, 12 insertions, 9 deletions
diff --git a/ext/pdo_odbc/config.m4 b/ext/pdo_odbc/config.m4 index c846d13b6..90086e356 100755 --- a/ext/pdo_odbc/config.m4 +++ b/ext/pdo_odbc/config.m4 @@ -1,4 +1,4 @@ -dnl $Id: config.m4 291414 2009-11-29 06:13:22Z rasmus $ +dnl $Id: config.m4 311041 2011-05-15 05:49:34Z rasmus $ dnl config.m4 for extension pdo_odbc dnl vim:et:sw=2:ts=2: diff --git a/ext/pdo_odbc/odbc_driver.c b/ext/pdo_odbc/odbc_driver.c index c1498896f..8eea0c66a 100755 --- a/ext/pdo_odbc/odbc_driver.c +++ b/ext/pdo_odbc/odbc_driver.c @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: odbc_driver.c 306939 2011-01-01 02:19:59Z felipe $ */ +/* $Id: odbc_driver.c 312506 2011-06-27 01:36:39Z felipe $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -224,7 +224,7 @@ static long odbc_handle_doer(pdo_dbh_t *dbh, const char *sql, long sql_len TSRML { pdo_odbc_db_handle *H = (pdo_odbc_db_handle *)dbh->driver_data; RETCODE rc; - long row_count = -1; + SQLLEN row_count = -1; PDO_ODBC_HSTMT stmt; rc = SQLAllocHandle(SQL_HANDLE_STMT, H->dbc, &stmt); diff --git a/ext/pdo_odbc/odbc_stmt.c b/ext/pdo_odbc/odbc_stmt.c index 4a59cc641..fb7605486 100755 --- a/ext/pdo_odbc/odbc_stmt.c +++ b/ext/pdo_odbc/odbc_stmt.c @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: odbc_stmt.c 306939 2011-01-01 02:19:59Z felipe $ */ +/* $Id: odbc_stmt.c 312506 2011-06-27 01:36:39Z felipe $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -164,7 +164,7 @@ static int odbc_stmt_execute(pdo_stmt_t *stmt TSRMLS_DC) RETCODE rc; pdo_odbc_stmt *S = (pdo_odbc_stmt*)stmt->driver_data; char *buf = NULL; - long row_count = -1; + SQLLEN row_count = -1; if (stmt->executed) { SQLCloseCursor(S->stmt); diff --git a/ext/pdo_odbc/pdo_odbc.c b/ext/pdo_odbc/pdo_odbc.c index 56d46b50a..046bf4c3a 100755 --- a/ext/pdo_odbc/pdo_odbc.c +++ b/ext/pdo_odbc/pdo_odbc.c @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: pdo_odbc.c 306939 2011-01-01 02:19:59Z felipe $ */ +/* $Id: pdo_odbc.c 314376 2011-08-06 14:47:44Z felipe $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -40,7 +40,7 @@ const function_entry pdo_odbc_functions[] = { #if ZEND_MODULE_API_NO >= 20050922 static const zend_module_dep pdo_odbc_deps[] = { ZEND_MOD_REQUIRED("pdo") - {NULL, NULL, NULL} + ZEND_MOD_END }; #endif /* }}} */ @@ -98,6 +98,9 @@ PHP_MINIT_FUNCTION(pdo_odbc) char *instance = INI_STR("pdo_odbc.db2_instance_name"); if (instance) { char *env = malloc(sizeof("DB2INSTANCE=") + strlen(instance)); + if (!env) { + return FAILURE; + } strcpy(env, "DB2INSTANCE="); strcat(env, instance); putenv(env); diff --git a/ext/pdo_odbc/php_pdo_odbc_int.h b/ext/pdo_odbc/php_pdo_odbc_int.h index 26fc75063..2f9a6cc60 100755 --- a/ext/pdo_odbc/php_pdo_odbc_int.h +++ b/ext/pdo_odbc/php_pdo_odbc_int.h @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: php_pdo_odbc_int.h 306939 2011-01-01 02:19:59Z felipe $ */ +/* $Id: php_pdo_odbc_int.h 312506 2011-06-27 01:36:39Z felipe $ */ #ifdef PHP_WIN32 # define PDO_ODBC_TYPE "Win32" @@ -136,7 +136,7 @@ typedef struct { typedef struct { char *data; unsigned long datalen; - long fetched_len; + SQLLEN fetched_len; SWORD coltype; char colname[128]; unsigned is_long; |