]> granicus.if.org Git - php/commitdiff
- Fix the MFH :)
authorDerick Rethans <derick@php.net>
Mon, 24 Jun 2002 08:18:54 +0000 (08:18 +0000)
committerDerick Rethans <derick@php.net>
Mon, 24 Jun 2002 08:18:54 +0000 (08:18 +0000)
ext/standard/math.c

index 1f2b0fd2cf4e91ad196e0febeedcd2d37cb69d3b..eccf5ab5be65552510184b0e421c0f7d3e37c1ea 100644 (file)
@@ -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);
 }