xref: /php-src/ext/xsl/tests/bug48221.phpt (revision 5c749ad4)
1--TEST--
2Bug #48221 (memory leak when passing invalid xslt parameter)
3--EXTENSIONS--
4xsl
5--FILE--
6<?php
7include('prepare.inc');
8$proc->importStylesheet($xsl);
9$proc->setParameter('', '', '"\'');
10$proc->transformToXml($dom);
11?>
12Done
13--EXPECT--
14Done
15--CREDITS--
16Christian Weiske, cweiske@php.net
17PHP Testfest Berlin 2009-05-09
18