diff options
author | Pierre Joye <pajoye@php.net> | 2011-12-26 12:32:05 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2011-12-26 12:32:05 +0000 |
commit | dfa30f03b6db930e4f68830d3bd4d89c7135cfe7 (patch) | |
tree | 1d122e971d747c5d7e64886e91bac73cdeeeee6b | |
parent | bb6855124da5862a7525bd15620c8a6d46d91560 (diff) | |
download | php-git-dfa30f03b6db930e4f68830d3bd4d89c7135cfe7.tar.gz |
- Fix bug #60326, fix TS build (introduced by r321406)
-rw-r--r-- | ext/zlib/zlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } } |