summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2002-03-21 01:22:36 +0000
committerWez Furlong <wez@php.net>2002-03-21 01:22:36 +0000
commit8da009393583366bd1d2712c17a7e3a2da824a95 (patch)
tree4ebaa868ae2eff9973db1d8341d3e5cce39984c3
parentba81ebf46c7cc2f1d7646bbbb649b0a6b2afe92a (diff)
downloadphp-git-8da009393583366bd1d2712c17a7e3a2da824a95.tar.gz
really nuke it...
-rw-r--r--ext/zlib/zlib.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c
index a006eb8bc4..823603a2db 100644
--- a/ext/zlib/zlib.c
+++ b/ext/zlib/zlib.c
@@ -171,7 +171,6 @@ static void phpi_destructor_gzclose(zend_rsrc_list_entry *rsrc TSRMLS_DC)
*/
static void php_zlib_init_globals(zend_zlib_globals *zlib_globals_p TSRMLS_DC)
{
- ZLIBG(gzgetss_state) = 0;
}
/* }}} */
#endif
@@ -182,8 +181,6 @@ PHP_MINIT_FUNCTION(zlib)
{
#ifdef ZTS
ts_allocate_id(&zlib_globals_id, sizeof(zend_zlib_globals), (ts_allocate_ctor) php_zlib_init_globals, NULL);
-#else
- ZLIBG(gzgetss_state)=0;
#endif
le_zp = zend_register_list_destructors_ex(phpi_destructor_gzclose, NULL, "zlib", module_number);