xref: /PHP-8.4/ext/dom/tests/gh17223.phpt (revision 7be950f3)
1--TEST--
2GH-17223 (Memory leak in libxml encoding handling)
3--EXTENSIONS--
4dom
5--FILE--
6<?php
7$doc = new DOMDocument("1.0", "Shift-JIS");
8@$doc->save("%00");
9echo "Done\n";
10?>
11--EXPECT--
12Done
13