From: Derick Rethans Date: Mon, 24 Jun 2002 08:18:54 +0000 (+0000) Subject: - Fix the MFH :) X-Git-Tag: php-4.2.3RC1~100 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=17cd2e4cf8ffd3044c148314cf23e8e45c1bad8b;p=php - Fix the MFH :) --- diff --git a/ext/standard/math.c b/ext/standard/math.c index 1f2b0fd2cf..eccf5ab5be 100644 --- a/ext/standard/math.c +++ b/ext/standard/math.c @@ -934,10 +934,10 @@ PHP_FUNCTION(base_convert) RETURN_FALSE; } - if(_php_math_basetozval(*number, Z_LVAL_PP(frombase), &temp TSRMLS_CC) != SUCCESS) { + if(_php_math_basetozval(*number, Z_LVAL_PP(frombase), &temp) != SUCCESS) { RETURN_FALSE; } - result = _php_math_zvaltobase(&temp, Z_LVAL_PP(tobase)); + result = _php_math_zvaltobase(&temp, Z_LVAL_PP(tobase) TSRMLS_CC); RETVAL_STRING(result, 0); }