]> granicus.if.org Git - php/commitdiff
WS fix
authorDan Kalowsky <kalowsky@php.net>
Tue, 20 Aug 2002 05:19:04 +0000 (05:19 +0000)
committerDan Kalowsky <kalowsky@php.net>
Tue, 20 Aug 2002 05:19:04 +0000 (05:19 +0000)
ext/odbc/php_odbc.c

index 747b425d4ffe8cd9a00f58471cf3a2fb666e4a7b..64c8d07b054365842b2e614e7ce6872480619b1d 100644 (file)
@@ -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)) {