diff options
author | Jakub Zelenka <bukka@php.net> | 2015-02-03 19:27:24 +0000 |
---|---|---|
committer | Jakub Zelenka <bukka@php.net> | 2015-02-03 19:27:24 +0000 |
commit | 0a81f9a0bd36deac8707949acbcf92f612b60e8e (patch) | |
tree | 9d27dabd3dbcffd2c40ed1e3d68477f74f4d7d32 /ext/odbc/php_odbc.c | |
parent | c3cd2d33ca89a6b2188e29cfbb1451818fd60024 (diff) | |
parent | 55cefb2814bde5815a92e8820fff45e037fa8d4f (diff) | |
download | php-git-0a81f9a0bd36deac8707949acbcf92f612b60e8e.tar.gz |
Merge branch 'master' into jsond
Diffstat (limited to 'ext/odbc/php_odbc.c')
-rw-r--r-- | ext/odbc/php_odbc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/odbc/php_odbc.c b/ext/odbc/php_odbc.c index cd4964346f..692128c59f 100644 --- a/ext/odbc/php_odbc.c +++ b/ext/odbc/php_odbc.c @@ -1358,7 +1358,7 @@ PHP_FUNCTION(odbc_execute) rc = SQLBindParameter(result->stmt, (SQLUSMALLINT)i, SQL_PARAM_INPUT, ctype, sqltype, precision, scale, - (void *)params[i-1].fp, 0, + (void *)(intptr_t)params[i-1].fp, 0, ¶ms[i-1].vallen); } else { #ifdef HAVE_DBMAKER |