summaryrefslogtreecommitdiff
path: root/ext/openssl/tests/bug38261.phpt
blob: 827f3aca75535c252b44f119195d547682ff6378 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
--TEST--
openssl key from zval leaks
--SKIPIF--
<?php
if (!extension_loaded("openssl")) die("skip");
?>
--FILE--
<?php
$cert = false;
class test {
    function __toString() {
        return "test object";
    }
}
$t = new test;

var_dump(openssl_x509_parse("foo"));

try {
    var_dump(openssl_x509_parse($t));
} catch (TypeError $e) {
    echo $e->getMessage(), "\n";
}

try {
    openssl_x509_parse([]);
} catch (TypeError $e) {
    echo $e->getMessage(), "\n";
}

var_dump(openssl_x509_parse($cert));

try {
    openssl_x509_parse(new stdClass);
} catch (TypeError $e) {
    echo $e->getMessage(), "\n";
}

?>
--EXPECT--
bool(false)
bool(false)
openssl_x509_parse(): Argument #1 ($x509) must be of type OpenSSLCertificate|string, array given
bool(false)
openssl_x509_parse(): Argument #1 ($x509) must be of type OpenSSLCertificate|string, stdClass given