summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2011-12-26 12:32:05 +0000
committerPierre Joye <pajoye@php.net>2011-12-26 12:32:05 +0000
commit7dcc4c0d0e44ccfe6018b2630e5721772d19b2e4 (patch)
treebd322ebe2d125d8184f49a0371454967b822cc33
parente665e01e880bb9bbfcff065825f4d6db48e5515b (diff)
downloadphp-git-7dcc4c0d0e44ccfe6018b2630e5721772d19b2e4.tar.gz
- Fix bug #60326, fix TS build (introduced by r321406)
-rw-r--r--ext/zlib/zlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c
index 25e2ee7f9d..878e566a00 100644
--- a/ext/zlib/zlib.c
+++ b/ext/zlib/zlib.c
@@ -432,7 +432,7 @@ static void php_zlib_cleanup_ob_gzhandler_mess(TSRMLS_D)
{
if (ZLIBG(ob_gzhandler)) {
deflateEnd(&(ZLIBG(ob_gzhandler)->Z));
- php_zlib_output_handler_context_dtor(ZLIBG(ob_gzhandler));
+ php_zlib_output_handler_context_dtor(ZLIBG(ob_gzhandler) TSRMLS_CC);
ZLIBG(ob_gzhandler) = NULL;
}
}