diff options
| author | Dmitry Stogov <dmitry@php.net> | 2006-09-21 06:46:00 +0000 |
|---|---|---|
| committer | Dmitry Stogov <dmitry@php.net> | 2006-09-21 06:46:00 +0000 |
| commit | c0894d9d6e6113fab557485ec1eb590f8e264068 (patch) | |
| tree | d093e006d75f5b48cc956f1c884f7b8a59ce91f8 | |
| parent | 036403114ec0cbd9d430c11c1b01263ab024f2ba (diff) | |
| download | php-git-c0894d9d6e6113fab557485ec1eb590f8e264068.tar.gz | |
ZTS fix
| -rw-r--r-- | ext/bcmath/bcmath.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |
