From: Dmitry Stogov Date: Thu, 21 Sep 2006 06:46:00 +0000 (+0000) Subject: ZTS fix X-Git-Tag: RELEASE_1_0_0RC1~1602 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c0894d9d6e6113fab557485ec1eb590f8e264068;p=php ZTS fix --- diff --git a/ext/bcmath/bcmath.c b/ext/bcmath/bcmath.c index 750feaad57..4e521fb506 100644 --- a/ext/bcmath/bcmath.c +++ b/ext/bcmath/bcmath.c @@ -319,7 +319,7 @@ PHP_FUNCTION(bcmul) php_str2num(&first, left TSRMLS_CC); php_str2num(&second, right TSRMLS_CC); - bc_multiply(first, second, &result, scale); + bc_multiply(first, second, &result, scale TSRMLS_CC); if (result->n_scale > scale) { result->n_scale = scale; }