diff options
author | Dan Kalowsky <kalowsky@php.net> | 2002-08-20 05:19:04 +0000 |
---|---|---|
committer | Dan Kalowsky <kalowsky@php.net> | 2002-08-20 05:19:04 +0000 |
commit | 3c97c82ee797b6e318a4c410f94acd3535cf0c17 (patch) | |
tree | 5ab6de005bdeb0dbf6679b9d5884aaa5abdfd408 /ext | |
parent | 507cc75d92cdc80edf408cca4599dbf3840d2592 (diff) | |
download | php-git-3c97c82ee797b6e318a4c410f94acd3535cf0c17.tar.gz |
WS fix
Diffstat (limited to 'ext')
-rw-r--r-- | ext/odbc/php_odbc.c | 4 |
1 files 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)) { |