bug65236.phpt 324 B

123456789101112131415
  1. --TEST--
  2. Bug #65236 (heap corruption in xml parser)
  3. --SKIPIF--
  4. <?php
  5. require_once("skipif.inc");
  6. ?>
  7. --FILE--
  8. <?php
  9. xml_parse_into_struct(xml_parser_create_ns(), str_repeat("<blah>", 1000), $a);
  10. echo "Done\n";
  11. ?>
  12. --EXPECTF--
  13. Warning: xml_parse_into_struct(): Maximum depth exceeded - Results truncated in %s on line %d
  14. Done