1
0
mirror of https://github.com/php/php-src.git synced 2026-04-22 07:28:09 +02:00

- Fix bug #60326, fix TS build (introduced by r321406)

This commit is contained in:
Pierre Joye
2011-12-26 12:32:05 +00:00
parent e665e01e88
commit 7dcc4c0d0e
+1 -1
View File
@@ -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;
}
}