summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2006-09-21 06:46:00 +0000
committerDmitry Stogov <dmitry@php.net>2006-09-21 06:46:00 +0000
commitc0894d9d6e6113fab557485ec1eb590f8e264068 (patch)
treed093e006d75f5b48cc956f1c884f7b8a59ce91f8
parent036403114ec0cbd9d430c11c1b01263ab024f2ba (diff)
downloadphp-git-c0894d9d6e6113fab557485ec1eb590f8e264068.tar.gz
ZTS fix
-rw-r--r--ext/bcmath/bcmath.c2
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;
}