From 3c97c82ee797b6e318a4c410f94acd3535cf0c17 Mon Sep 17 00:00:00 2001 From: Dan Kalowsky Date: Tue, 20 Aug 2002 05:19:04 +0000 Subject: [PATCH] WS fix --- ext/odbc/php_odbc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/odbc/php_odbc.c b/ext/odbc/php_odbc.c index 747b425d4f..64c8d07b05 100644 --- a/ext/odbc/php_odbc.c +++ b/ext/odbc/php_odbc.c @@ -214,7 +214,7 @@ static void _close_odbc_conn(zend_rsrc_list_entry *rsrc TSRMLS_DC) int i, nument, type; void *ptr; - nument = zend_hash_next_free_element(&EG(regular_list)); + nument = zend_hash_next_free_element(&EG(regular_list)); for(i = 1; i < nument; i++) { ptr = zend_list_find(i, &type); if (ptr && (type == le_result)) { @@ -241,7 +241,7 @@ static void _close_odbc_pconn(zend_rsrc_list_entry *rsrc TSRMLS_DC) int i, nument, type; void *ptr; - nument = zend_hash_next_free_element(&EG(regular_list)); + nument = zend_hash_next_free_element(&EG(regular_list)); for(i = 1; i < nument; i++) { ptr = zend_list_find(i, &type); if (ptr && (type == le_result)) { -- 2.50.1