mirror of
https://github.com/php/php-src.git
synced 2024-12-01 05:43:38 +08:00
36 lines
836 B
PHP
36 lines
836 B
PHP
--TEST--
|
|
Bug #72714 (_xml_startElementHandler() segmentation fault)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('xml')) die('skip xml extension not available');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
function startElement($parser, $name, $attribs) {
|
|
var_dump($name);
|
|
}
|
|
|
|
function endElement($parser, $name) {}
|
|
|
|
function parse($tagstart) {
|
|
$xml = '<ns1:total>867</ns1:total>';
|
|
|
|
$xml_parser = xml_parser_create();
|
|
xml_set_element_handler($xml_parser, 'startElement', 'endElement');
|
|
|
|
xml_parser_set_option($xml_parser, XML_OPTION_SKIP_TAGSTART, $tagstart);
|
|
xml_parse($xml_parser, $xml);
|
|
|
|
xml_parser_free($xml_parser);
|
|
}
|
|
|
|
parse(3015809298423721);
|
|
parse(20);
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
Notice: xml_parser_set_option(): tagstart ignored, because it is out of range in %s%ebug72714.php on line %d
|
|
string(9) "NS1:TOTAL"
|
|
string(0) ""
|
|
===DONE===
|