mirror of
https://github.com/php/php-src.git
synced 2026-03-26 17:22:15 +01:00
17 lines
356 B
PHP
17 lines
356 B
PHP
--TEST--
|
|
Bug #61097 (Memory leak in xmlrpc functions copying zvals)
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("xmlrpc")) print "skip"; ?>
|
|
--FILE--
|
|
<?php
|
|
$server = xmlrpc_server_create();
|
|
|
|
$method = 'abc';
|
|
xmlrpc_server_register_introspection_callback($server, $method);
|
|
xmlrpc_server_register_method($server, 'abc', $method);
|
|
|
|
echo 'Done';
|
|
?>
|
|
--EXPECT--
|
|
Done
|