Re: [libvirt] [PATCH] Eliminate memory leak in xenUnifiedDomainInfoListFree

2010-07-29 Thread Laine Stump
On 07/29/2010 10:10 AM, Eric Blake wrote: On 07/29/2010 07:47 AM, Laine Stump wrote: From: Laine Stump This fixes a leak described in https://bugzilla.redhat.com/show_bug.cgi?id=590073 xenUnifiedDomainInfoList has a pointer to a list of pointers to xenUnifiedDomain. We were freeing up al

Re: [libvirt] [PATCH] Eliminate memory leak in xenUnifiedDomainInfoListFree

2010-07-29 Thread Chris Lalancette
On 07/29/10 - 09:47:53AM, Laine Stump wrote: > From: Laine Stump > > This fixes a leak described in > >https://bugzilla.redhat.com/show_bug.cgi?id=590073 > > xenUnifiedDomainInfoList has a pointer to a list of pointers to > xenUnifiedDomain. We were freeing up all the domains, but neglectin

Re: [libvirt] [PATCH] Eliminate memory leak in xenUnifiedDomainInfoListFree

2010-07-29 Thread Eric Blake
On 07/29/2010 07:47 AM, Laine Stump wrote: > From: Laine Stump > > This fixes a leak described in > >https://bugzilla.redhat.com/show_bug.cgi?id=590073 > > xenUnifiedDomainInfoList has a pointer to a list of pointers to > xenUnifiedDomain. We were freeing up all the domains, but neglecting

[libvirt] [PATCH] Eliminate memory leak in xenUnifiedDomainInfoListFree

2010-07-29 Thread Laine Stump
From: Laine Stump This fixes a leak described in https://bugzilla.redhat.com/show_bug.cgi?id=590073 xenUnifiedDomainInfoList has a pointer to a list of pointers to xenUnifiedDomain. We were freeing up all the domains, but neglecting to free the list. This was found by Paolo Bonzini . --- s