15 lines
199 B
Plaintext
15 lines
199 B
Plaintext
|
|
--TEST--
|
||
|
|
Bug #41353 (openssl_pkcs12_read() does not verify the type of the first arg)
|
||
|
|
--EXTENSIONS--
|
||
|
|
openssl
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
|
||
|
|
$a = 2;
|
||
|
|
openssl_pkcs12_read(1, $a, 1);
|
||
|
|
|
||
|
|
echo "Done\n";
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
Done
|