Browse Source

fix unicode mode

PHAR_1_2
Antony Dovgal 19 years ago
parent
commit
04dc0ced37
  1. 2
      ext/mcrypt/tests/bug41252.phpt

2
ext/mcrypt/tests/bug41252.phpt

@ -5,7 +5,7 @@ Bug #41252 (Calling mcrypt_generic without first calling mcrypt_generic_init cra
--FILE--
<?php
$td = mcrypt_module_open(MCRYPT_DES, b'', MCRYPT_MODE_ECB, b'');
echo mcrypt_generic($td,'aaaaaaaa');
echo mcrypt_generic($td,b'aaaaaaaa');
print "I'm alive!\n";
?>
--EXPECTF--

Loading…
Cancel
Save