File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / openssl / tests / bug38261.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:47:59 2012 UTC (12 years, 4 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

--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"));
var_dump(openssl_x509_parse($t));
var_dump(openssl_x509_parse(array()));
var_dump(openssl_x509_parse());
var_dump(openssl_x509_parse($cert));
var_dump(openssl_x509_parse(new stdClass));

?>
--EXPECTF--
bool(false)
bool(false)
bool(false)

Warning: openssl_x509_parse() expects at least 1 parameter, 0 given in %sbug38261.php on line %d
NULL
bool(false)

Catchable fatal error: Object of class stdClass could not be converted to string in %sbug38261.php on line %d 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>