X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=http.c;h=3b0588719324a8140363227e023e543f47552643;hb=f6280c0f47b07d5c6079f7074491b6173c89599f;hp=192834be53f9476a16060641f9869bddaf8e9fbd;hpb=9710bc0868c12147598d170ec488a4692d3022a5;p=m6w6%2Fext-http diff --git a/http.c b/http.c index 192834b..3b05887 100644 --- a/http.c +++ b/http.c @@ -240,19 +240,9 @@ PHP_RINIT_FUNCTION(http) } /* }}} */ -static int cleanup_statics(void *p TSRMLS_DC) -{ - zval_dtor(*(zval **)p); - return 0; -} - /* {{{ PHP_RSHUTDOWN_FUNCTION */ PHP_RSHUTDOWN_FUNCTION(http) { - /* ZE kludge */ -#ifdef ZEND_ENGINE_2 - zend_hash_apply(http_response_object_ce->static_members, cleanup_statics TSRMLS_CC); -#endif http_globals_free(HTTP_GLOBALS); return SUCCESS; }