[PHP-DEV] Bug #12791: mcrypt doesnt work in 4.0.7 rc1 by this code From: alberty <email protected>
Date: 08/16/01

From: alberty <email protected>
Operating system: i686-pc-linux-gnu
PHP version: 4.0CVS-2001-08-16
PHP Bug Type: mcrypt related
Bug description: mcrypt doesnt work in 4.0.7 rc1 by this code

Hi all,

mcrypt doesnt work in 4.0.7 with the following code:

the following code produce a
<b>Warning</b>: Unknown list entry type in request shutdown (0) in

---<PHP>---
function cipherx_stream(){
        $td =  <email protected> (MCRYPT_ARCFOUR , "", MCRYPT_MODE_STREAM, "");
}
$xyz=cipherx_stream();
---</PHP>---

if you use this, PHP crashes:

---<PHP>---
function cipherx_stream(){
        $td =  <email protected> (MCRYPT_ARCFOUR , "", MCRYPT_MODE_STREAM, "");
        if ($td) mcrypt_generic_end ($td);
}
$xyz=cipherx_stream();
---</PHP>---

PHP 4.0.6 work fine with the first code, but it crashes also
with the second :-(

Regards,

-- 
Steve
-- 
Edit bug report at: http://bugs.php.net/?id=12791&edit=1

-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>