1
0
mirror of https://github.com/php/php-src.git synced 2026-04-14 11:32:11 +02:00

On second thoughts, keep this in sync with 5.6 for 71422

This commit is contained in:
Christopher Jones
2016-04-14 15:49:15 +10:00
parent 96ece22a05
commit ec358dac03

View File

@@ -1149,7 +1149,8 @@ int php_oci_bind_by_name(php_oci_statement *statement, char *name, size_t name_l
return 1;
}
convert_to_long(var);
#if defined(OCI_MAJOR_VERSION) && OCI_MAJOR_VERSION > 10
#if defined(OCI_MAJOR_VERSION) && (OCI_MAJOR_VERSION > 10) && \
(defined(__x86_64__) || defined(__LP64__) || defined(_LP64) || defined(_WIN64))
bind_data = (ub8 *)&Z_LVAL_P(var);
value_sz = sizeof(ub8);
#else