|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2005-12-07 20:08 UTC] bkw at weisshuhn dot de
Description: ------------ The Memory Leak of Bug #33523 was fixed in the php-5-Branch only. php-4.4.1 still has it. Patch: http://cvs.php.net/diff.php/php-src/ext/xmlrpc/xmlrpc-epi-php.c?r1=1.37&r2=1.38&ty=u PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 03 11:00:01 2025 UTC |
Patch against cvs PHP_4_4: Index: ext/xmlrpc/xmlrpc-epi-php.c =================================================================== RCS file: /repository/php-src/ext/xmlrpc/xmlrpc-epi-php.c,v retrieving revision 1.24.2.4.4.2 diff -u -p -r1.24.2.4.4.2 xmlrpc-epi-php.c --- ext/xmlrpc/xmlrpc-epi-php.c 5 Oct 2005 16:41:18 -0000 1.24.2.4.4.2 +++ ext/xmlrpc/xmlrpc-epi-php.c 7 Dec 2005 19:55:12 -0000 @@ -686,6 +686,9 @@ PHP_FUNCTION(xmlrpc_encode_request) XMLRPC_RequestFree(xRequest, 1); } } + if (out.xmlrpc_out.xml_elem_opts.encoding != ENCODING_DEFAULT) { + efree(out.xmlrpc_out.xml_elem_opts.encoding); + } } /* }}} */