summaryrefslogtreecommitdiff
path: root/ext/oci8/php_oci8_int.h
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2006-07-30 20:51:24 +0000
committerAntony Dovgal <tony2001@php.net>2006-07-30 20:51:24 +0000
commitaa1ced04cba02a3052a99220183f730254ca4a60 (patch)
tree8cebd8945ce36c21ec575b03b136111e0ac73e74 /ext/oci8/php_oci8_int.h
parentfb1c592640092a8a440905dc7add9a4ea663b0d5 (diff)
downloadphp-git-aa1ced04cba02a3052a99220183f730254ca4a60.tar.gz
MFH: fix #38173 (Freeing nested cursors causes OCI8 to segfault)
Diffstat (limited to 'ext/oci8/php_oci8_int.h')
-rw-r--r--ext/oci8/php_oci8_int.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/oci8/php_oci8_int.h b/ext/oci8/php_oci8_int.h
index 638cd2391a..b3e2c46137 100644
--- a/ext/oci8/php_oci8_int.h
+++ b/ext/oci8/php_oci8_int.h
@@ -166,6 +166,7 @@ typedef struct { /* php_oci_statement {{{ */
int ncolumns; /* number of columns in the result */
unsigned executed:1; /* statement executed flag */
unsigned has_data:1; /* statement has more data flag */
+ unsigned nested:1; /* statement handle is valid */
ub2 stmttype; /* statement type */
} php_oci_statement; /* }}} */