ID: 14966
User updated by: [EMAIL PROTECTED]
Old Summary: round() function doesn't always work
Reported By: [EMAIL PROTECTED]
Status: Open
Bug Type: *Math Functions
Operating System: Compaq Tru64 v4.0E
PHP Version: 4.0.6
New Comment:

The same code is used in PHP 4.1.1, BTW.



Previous Comments:
------------------------------------------------------------------------

[2002-01-10 09:53:27] [EMAIL PROTECTED]

If PHP is built without complete ANSI C prototypes in scope the 'round'
function can fail.

This is because the second argument to 'pow' in ext/standard/math.c:143
is an integer, and without prototypes it doesn't receive its implicit
cast to a double, causing the 'pow' function to receive an undefined
value on the stack.

The simple fix is to put an explicit (double) cast in:

    f = pow(10.0, (double)places);

A better fix might be to ensure that the ANSI version of the prototypes
from <math.h> are always in scope, but that may be difficult to achieve
across a wide variety of systems.


------------------------------------------------------------------------



Edit this bug report at http://bugs.php.net/?id=14966&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to