ID: 41252 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Assigned +Status: Closed Bug Type: Reproducible crash Operating System: Windows XP PHP Version: 4.4.6 Assigned To: derick New Comment:
This bug has been fixed in CVS. Snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. Thank you for the report, and for helping us make PHP better. Previous Comments: ------------------------------------------------------------------------ [2007-05-01 15:39:01] [EMAIL PROTECTED] I can reproduce this on Linux. Working on backporting the extra checks. ------------------------------------------------------------------------ [2007-05-01 15:19:28] [EMAIL PROTECTED] Description: ------------ Calling mcrypt_generic() without first calling mcrypt_generic_init() results in a crash on PHP 4.4.6 / Windows XP running the latest version of mcrypt from http://ftp.emini.dk/pub/php/win32/mcrypt/. PHP 5 is unaffected. Reproduce code: --------------- <?php $td = mcrypt_module_open(MCRYPT_DES, '', MCRYPT_MODE_ECB, ''); echo mcrypt_generic($td,'aaaaaaaa'); ?> Expected result: ---------------- There should be some sort of error. Here's what PHP 5.2.1 says: Warning: mcrypt_generic(): Operation disallowed prior to mcrypt_generic_init() in {filename} on line 3 Actual result: -------------- It crashes. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=41252&edit=1
