|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2001-06-06 02:18 UTC] tgagne at efinnet dot com
  [2001-07-17 10:49 UTC] joey@php.net
  [2001-08-20 10:40 UTC] sniper@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 00:00:01 2025 UTC | 
php_domxml.c, line #698 The pointer (content) from xmlNodeGetContent(last); needs to be freed. There's still another memory leak in domxml but it leaks much slower now. To my version of the file I added: if (content) { add_property_stringl(child, "content", (char *) content, strlen(content), 1); free(content); } directly beneath it.