From cf45beedb5c18512151ee33fe7b552e34ca2282d Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Tue, 23 Dec 2003 09:21:14 +0000 Subject: [PATCH] do not delete connection ids, we need them --- ext/oci8/oci8.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c index dee526ccaa..5c006a58ba 100644 --- a/ext/oci8/oci8.c +++ b/ext/oci8/oci8.c @@ -888,8 +888,6 @@ _oci_stmt_list_dtor(zend_rsrc_list_entry *rsrc TSRMLS_DC) efree(statement->defines); } - zend_list_delete(statement->conn->id); - oci_debug("END _oci_stmt_list_dtor: id=%d",statement->id); efree(statement); @@ -967,7 +965,6 @@ _oci_coll_list_dtor(zend_rsrc_list_entry *rsrc TSRMLS_DC) oci_collection *coll = (oci_collection *)rsrc->ptr; oci_debug("START _oci_coll_list_dtor: %d",coll->id); - zend_list_delete(coll->conn->id); /* Note sure if we need to free the object. Have an oracle TAR out on this one. OCIDescriptorFree(descr->ocidescr, Z_TYPE_P(descr)); */ -- 2.40.0