mirror of
https://github.com/php/php-src.git
synced 2026-03-26 01:02:25 +01:00
Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
16 lines
561 B
PHP
16 lines
561 B
PHP
--TEST--
|
|
Bug #72165 Null pointer dereference - openssl_csr_new
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded("openssl")) die("skip");
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$var0 = array(0 => "hello", 1 => "world");
|
|
$var2 = openssl_csr_new(array(0),$var0,null,array(0));
|
|
?>
|
|
--EXPECTF--
|
|
Warning: openssl_csr_new(): dn: numeric fild names are not supported in %sbug72165.php on line %d
|
|
|
|
Warning: openssl_csr_new(): add1_attr_by_txt challengePassword_min -> 4 (failed; check error queue and value of string_mask OpenSSL option if illegal characters are reported) in %sbug72165.php on line %d
|