thread safety
[m6w6/ext-http] / php_http_request_factory.c
index a4ac4f0cd5e622854f3eb03b8172c09d18032797..1e61e5915138fba2bb2003d32f0b9b2f76e4c965 100644 (file)
@@ -89,7 +89,7 @@ PHP_METHOD(HttpRequestFactory, __construct)
                                FOREACH_HASH_KEYVAL(pos, options, key, val) {
                                        if (key.type == HASH_KEY_IS_STRING) {
                                                zval *newval = php_http_zsep(1, Z_TYPE_PP(val), *val);
-                                               zend_update_property(php_http_request_factory_class_entry, getThis(), key.str, key.len - 1, newval);
+                                               zend_update_property(php_http_request_factory_class_entry, getThis(), key.str, key.len - 1, newval TSRMLS_CC);
                                                zval_ptr_dtor(&newval);
                                        }
                                }
@@ -135,12 +135,12 @@ PHP_METHOD(HttpRequestFactory, createRequest)
 
                                                if ((pf = php_http_persistent_handle_concede(NULL , name_str, name_len, Z_STRVAL_P(phi), Z_STRLEN_P(phi) TSRMLS_CC))) {
                                                        php_http_resource_factory_ops_t ops = {
-                                                                       php_http_persistent_handle_acquire,
-                                                                       php_http_persistent_handle_accrete,
-                                                                       php_http_persistent_handle_release
+                                                                       (php_http_resource_factory_handle_ctor_t) php_http_persistent_handle_acquire,
+                                                                       (php_http_resource_factory_handle_copy_t) php_http_persistent_handle_accrete,
+                                                                       (php_http_resource_factory_handle_dtor_t) php_http_persistent_handle_release
                                                        };
 
-                                                       rf = php_http_resource_factory_init(NULL, &ops, pf, php_http_persistent_handle_abandon TSRMLS_CC);
+                                                       rf = php_http_resource_factory_init(NULL, &ops, pf, (void (*)(void *)) php_http_persistent_handle_abandon);
                                                }
 
                                                efree(name_str);
@@ -212,12 +212,12 @@ PHP_METHOD(HttpRequestFactory, createPool)
 
                                                if ((pf = php_http_persistent_handle_concede(NULL , name_str, name_len, Z_STRVAL_P(phi), Z_STRLEN_P(phi) TSRMLS_CC))) {
                                                        php_http_resource_factory_ops_t ops = {
-                                                                       php_http_persistent_handle_acquire,
-                                                                       php_http_persistent_handle_accrete,
-                                                                       php_http_persistent_handle_release
+                                                                       (php_http_resource_factory_handle_ctor_t) php_http_persistent_handle_acquire,
+                                                                       (php_http_resource_factory_handle_copy_t) php_http_persistent_handle_accrete,
+                                                                       (php_http_resource_factory_handle_dtor_t) php_http_persistent_handle_release
                                                        };
 
-                                                       rf = php_http_resource_factory_init(NULL, &ops, pf, php_http_persistent_handle_abandon TSRMLS_CC);
+                                                       rf = php_http_resource_factory_init(NULL, &ops, pf, (void (*)(void *)) php_http_persistent_handle_abandon);
                                                }
 
                                                efree(name_str);
@@ -279,12 +279,12 @@ PHP_METHOD(HttpRequestFactory, createDataShare)
 
                                                if ((pf = php_http_persistent_handle_concede(NULL , name_str, name_len, Z_STRVAL_P(phi), Z_STRLEN_P(phi) TSRMLS_CC))) {
                                                        php_http_resource_factory_ops_t ops = {
-                                                                       php_http_persistent_handle_acquire,
-                                                                       php_http_persistent_handle_accrete,
-                                                                       php_http_persistent_handle_release
+                                                                       (php_http_resource_factory_handle_ctor_t) php_http_persistent_handle_acquire,
+                                                                       (php_http_resource_factory_handle_copy_t) php_http_persistent_handle_accrete,
+                                                                       (php_http_resource_factory_handle_dtor_t) php_http_persistent_handle_release
                                                        };
 
-                                                       rf = php_http_resource_factory_init(NULL, &ops, pf, php_http_persistent_handle_abandon TSRMLS_CC);
+                                                       rf = php_http_resource_factory_init(NULL, &ops, pf, (void (*)(void *)) php_http_persistent_handle_abandon);
                                                }
 
                                                efree(name_str);