From: Sebastian Bergmann Date: Mon, 11 Mar 2002 05:43:23 +0000 (+0000) Subject: Fix thread-safe build. X-Git-Tag: help~95 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6729e0e9bf5a53814ca32d12d4a996c208c90824;p=php Fix thread-safe build. --- 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