Skip to content

Commit

Permalink
Tests: PHP 5.6 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
terrafrost committed Feb 22, 2024
1 parent bbb7633 commit 0d70f8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/MCryptCompatTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ public function ncfbHelper($prefix)
$v1.= call_user_func($prefix . 'mdecrypt_generic', $td, str_repeat('c', $block));
$v2.= str_repeat('c', $block);
}
($prefix . 'mcrypt_generic_deinit')($td);
call_user_func($prefix . 'mcrypt_generic_deinit', $td);
call_user_func($prefix . 'mcrypt_generic_init', $td, str_repeat('a', 16), str_repeat('a', 16));
$v2 = call_user_func($prefix . 'mdecrypt_generic', $td, $v2);

Expand Down

0 comments on commit 0d70f8a

Please sign in to comment.