compat with master
[m6w6/ext-http] / src / php_http_object.c
index e42998ea773407c830ac3cb9282a3ade55cd7081..2d09860ee5ba57ae4acfaa40b6b5e1233f194855 100644 (file)
@@ -66,7 +66,9 @@ php_http_object_method_t *php_http_object_method_init(php_http_object_method_t *
 
        cb->fci.size = sizeof(cb->fci);
        ZVAL_STRINGL(&cb->fci.function_name, method_str, method_len);
+#if PHP_VERSION_ID < 70300
        cb->fcc.initialized = 1;
+#endif
        cb->fcc.calling_scope = cb->fcc.called_scope = Z_OBJCE_P(zobject);
        cb->fcc.function_handler = Z_OBJ_HT_P(zobject)->get_method(&Z_OBJ_P(zobject), Z_STR(cb->fci.function_name), NULL);