summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Bergmann <sebastian@php.net>2002-03-11 05:43:23 +0000
committerSebastian Bergmann <sebastian@php.net>2002-03-11 05:43:23 +0000
commit6729e0e9bf5a53814ca32d12d4a996c208c90824 (patch)
tree6b9cc09ff700aaa1b078aab1e03c13a44832ee28
parentcd4954b7b5065caa9fb78eb3dfa362f88f2b5593 (diff)
downloadphp-git-6729e0e9bf5a53814ca32d12d4a996c208c90824.tar.gz
Fix thread-safe build.
-rw-r--r--ext/standard/math.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/math.c b/ext/standard/math.c
index c66feabf7a..993fd2e494 100644
--- a/ext/standard/math.c
+++ b/ext/standard/math.c
@@ -430,8 +430,8 @@ PHP_FUNCTION(pow)
}
/* make sure we're dealing with numbers */
- convert_scalar_to_number(zbase);
- convert_scalar_to_number(zexp);
+ convert_scalar_to_number(zbase TSRMLS_CC);
+ convert_scalar_to_number(zexp TSRMLS_CC);
/* if both base and exponent were longs, we'll try to get a long out */
wantlong = Z_TYPE_P(zbase) == IS_LONG