From: Derick Rethans Date: Sat, 15 Dec 2001 14:55:18 +0000 (+0000) Subject: - TSRMLS here and there, it's all about the Windows flair X-Git-Tag: PRE_ISSET_PATCH~535 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f5f4a5cf37afe5f450840cfebd4d5c8c03121bf9;p=php - TSRMLS here and there, it's all about the Windows flair --- diff --git a/ext/standard/var.c b/ext/standard/var.c index 0f9a41e25e..71dfad0bee 100644 --- a/ext/standard/var.c +++ b/ext/standard/var.c @@ -214,14 +214,14 @@ PHP_FUNCTION(var_export) } if (i) { - php_start_ob_buffer (NULL, 0); + php_start_ob_buffer (NULL, 0 TSRMLS_CC); } php_var_export(&var, 1 TSRMLS_CC); if (i) { - php_ob_get_buffer (return_value); - php_end_ob_buffer (0, 0); + php_ob_get_buffer (return_value TSRMLS_CC); + php_end_ob_buffer (0, 0 TSRMLS_CC); } } /* }}} */