]> granicus.if.org Git - php/commitdiff
Don't use xml resource in openssl test
authorNikita Popov <nikita.ppv@gmail.com>
Mon, 17 Sep 2018 08:20:26 +0000 (10:20 +0200)
committerNikita Popov <nikita.ppv@gmail.com>
Mon, 17 Sep 2018 08:20:26 +0000 (10:20 +0200)
Instead use a file resource, removing the dependency on ext/xml.

ext/openssl/tests/bug68912.phpt

index c18291a6ec6fd6aa54bc757480994388d0ff2ad9..dae57e9fdcad820b202602569efa35a61552954e 100644 (file)
@@ -3,13 +3,12 @@ Bug #68912 (Segmentation fault at openssl_spki_new)
 --SKIPIF--
 <?php 
 if (!extension_loaded("openssl")) die("skip");
-if (!extension_loaded("xml")) die("skip xml extension not loaded");
 if (!@openssl_pkey_new()) die("skip cannot create private key");
 ?>
 --FILE--
 <?php
 
-$var1=xml_parser_create_ns();
+$var1=fopen(__FILE__, 'r');
 $var2=2; 
 $var3=3;