ID: 8648 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Closed Bug Type: *Install and Config Assigned To: Comments: This is fixed in CVS already. Grab a snapshot from http://snaps.php.net/ --Jani Previous Comments: --------------------------------------------------------------------------- [2001-01-10 22:53:00] [EMAIL PROTECTED] I had a crasher when installing php-4.0.4 on FreeBSD 3.3 into apache 1.3.9. The problem was in the file php-4.0.4/ext/standard/crypt.c at line 109. I got a SIGFPE and a core dump when launching apache. The original line read as follows: srand48((unsigned int) time(0) * getpid() * (php_combined_lcg() * 10000.0)); my quick ugly hack was to add parenthesis to cast the whole thing to an int. It isn't the right solution but it is a step in the right direction (for me at least)... srand48((unsigned int) (time(0) * getpid() * (php_combined_lcg() * 10000.0))); --------------------------------------------------------------------------- Full Bug description available at: http://bugs.php.net/?id=8648 -- 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]