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
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: bkw at weisshuhn dot de
New email:
PHP Version: OS:

 

 [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

Pull Requests

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: Sun Dec 22 01:01:30 2024 UTC