From dfa30f03b6db930e4f68830d3bd4d89c7135cfe7 Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Mon, 26 Dec 2011 12:32:05 +0000 Subject: [PATCH] - Fix bug #60326, fix TS build (introduced by r321406) --- ext/zlib/zlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c index ce191eb44e..7ef778e279 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; } } -- 2.50.0