Skip Menu |

This queue is for tickets about the XML-Bare CPAN distribution.

Report information
The Basics
Id: 90562
Status: new
Priority: 0/
Queue: XML-Bare

People
Owner: Nobody in particular
Requestors: paskhaver [...] yahoo.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: memory leak
Date: Wed, 20 Nov 2013 16:21:57 -0500
To: bug-XML-Bare [...] rt.cpan.org
From: Victor Paskhaver <paskhaver [...] yahoo.com>
This code fragment in Bare.xs allocates new SV that is never used. Also it never gets freed, which results in memory leak. SV *namesv = newSVpvn( curnode->name, curnode->namelen ); SvUTF8_on(namesv);