Re: [PHP-CVS] cvs: php-src(PHP_5_3) /ext/standard math.c /ext/standard/tests/math exp_error.phpt

2008-02-12 Thread Nuno Lopes
@@ -471,14 +471,14 @@ Returns e raised to the power of the number */ PHP_FUNCTION(exp) { - zval **num; +double num; + +if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, d, num) == FAILURE) { +return; +} + +RETURN_DOUBLE(exp(num)); you

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/standard math.c /ext/standard/tests/math exp_error.phpt

2008-02-11 Thread Zoe Slattery
zoe Tue Feb 12 07:15:41 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/standard math.c /php-src/ext/standard/tests/mathexp_error.phpt Log: Fixing 44092