From c0e519e6ead5bd535d50d8be6930fab84af863dd Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Tue, 16 Dec 2003 15:48:20 +0000 Subject: [PATCH] fix warning, concerned to second _oci_close_server() call --- ext/oci8/oci8.c | 2 ++ 1 file changed, 2 insertions(+) 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 } /* }}} */ -- 2.50.1