summaryrefslogtreecommitdiff
path: root/ext/oci8/php_oci8_int.h
diff options
context:
space:
mode:
authorChristopher Jones <christopher.jones@oracle.com>2015-07-16 13:06:35 +1000
committerChristopher Jones <christopher.jones@oracle.com>2015-07-16 13:06:35 +1000
commite6d9061e8558f4a370862b32cace46b8e8ce4f02 (patch)
tree30354cc2eb0471b88c6db99fcc3ca6ccfaa14ecf /ext/oci8/php_oci8_int.h
parent0af07333520f65def3a72f31effa38c907e962f9 (diff)
downloadphp-git-e6d9061e8558f4a370862b32cace46b8e8ce4f02.tar.gz
More OCI8 diff fixes (Rajendra)
Diffstat (limited to 'ext/oci8/php_oci8_int.h')
-rw-r--r--ext/oci8/php_oci8_int.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/oci8/php_oci8_int.h b/ext/oci8/php_oci8_int.h
index 9f1da48cd1..4a23f06168 100644
--- a/ext/oci8/php_oci8_int.h
+++ b/ext/oci8/php_oci8_int.h
@@ -202,7 +202,7 @@ typedef struct {
/* {{{ php_oci_define */
typedef struct {
- zval zval; /* zval used in define */
+ zval *zval; /* zval used in define */
text *name; /* placeholder's name */
ub4 name_len; /* placeholder's name length */
ub4 type; /* define type */
@@ -237,7 +237,7 @@ typedef struct {
/* {{{ php_oci_bind */
typedef struct {
OCIBind *bind; /* bind handle */
- zval zval; /* value */
+ zval *zval; /* value */
dvoid *descriptor; /* used for binding of LOBS etc */
OCIStmt *statement; /* used for binding REFCURSORs */
php_oci_statement *parent_statement; /* pointer to the parent statement */