diff options
Diffstat (limited to 'ext')
-rw-r--r-- | ext/oci8/oci8.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c index 4db08ddd68..5c6db0366d 100644 --- a/ext/oci8/oci8.c +++ b/ext/oci8/oci8.c @@ -990,11 +990,13 @@ _oci_descriptor_list_dtor(zend_rsrc_list_entry *rsrc TSRMLS_DC) static void _oci_server_list_dtor(zend_rsrc_list_entry *rsrc TSRMLS_DC) { +#if 0 oci_server *server = (oci_server *)rsrc->ptr; if (server->persistent) return; _oci_close_server(server); +#endif } /* }}} */ |