diff options
| author | Antony Dovgal <tony2001@php.net> | 2006-07-30 20:51:24 +0000 |
|---|---|---|
| committer | Antony Dovgal <tony2001@php.net> | 2006-07-30 20:51:24 +0000 |
| commit | aa1ced04cba02a3052a99220183f730254ca4a60 (patch) | |
| tree | 8cebd8945ce36c21ec575b03b136111e0ac73e74 /ext/oci8/php_oci8_int.h | |
| parent | fb1c592640092a8a440905dc7add9a4ea663b0d5 (diff) | |
| download | php-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.h | 1 |
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; /* }}} */ |
