php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #35590 memoryleak in xmlrpc (son of #33523)
Submitted: 2005-12-07 20:08 UTC Modified: 2005-12-08 04:01 UTC
From: bkw at weisshuhn dot de Assigned:
Status: Closed Package: XMLRPC-EPI related
PHP Version: 4.4.1 OS: Linux Fedora Core 2,3,4
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
29 - 28 = ?
Subscribe to this entry?

 
 [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


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-12-07 20:57 UTC] bkw at weisshuhn dot de
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);
+   }
 }
 /* }}} */
 [2005-12-08 04:01 UTC] iliaa@php.net
This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 02:02:52 2024 UTC