summaryrefslogtreecommitdiff
path: root/ext/oci8/php_oci8_int.h
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2006-11-10 16:33:41 +0000
committerAntony Dovgal <tony2001@php.net>2006-11-10 16:33:41 +0000
commit4106eee7c71360e7a71f1f18c8c60f8ca2eaa929 (patch)
treed9f1554d443b8c15110bb6f5eb31d0e2d981705c /ext/oci8/php_oci8_int.h
parent31bfc6e55bbe11d60ee18d1423c8db98de14ef62 (diff)
downloadphp-git-4106eee7c71360e7a71f1f18c8c60f8ca2eaa929.tar.gz
fix segfault in ZTS mode when statements containing sub-statements are destroyed in wrong order
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 65020b8c31..22d7f8c37a 100644
--- a/ext/oci8/php_oci8_int.h
+++ b/ext/oci8/php_oci8_int.h
@@ -411,6 +411,7 @@ ZEND_BEGIN_MODULE_GLOBALS(oci) /* {{{ */
long max_persistent; /* maximum number of persistent connections per process */
long num_persistent; /* number of existing persistent connections */
long num_links; /* non-persistent + persistent connections */
+ long num_statements; /* number of statements open */
long ping_interval; /* time interval between pings */
long persistent_timeout; /* time period after which idle persistent connection is considered expired */
long statement_cache_size; /* statement cache size. used with 9i+ clients only*/