
29 Nov
2013
29 Nov
'13
4:27 p.m.
On Fri, Nov 29, 2013 at 8:54 PM, Daniel P. Berrange <berrange@redhat.com> wrote:
On Fri, Nov 29, 2013 at 08:40:31PM +0530, Nehal J Wani wrote:
I think it is preferrable to use virNWFilterEntryFree() here.
if (entry->rule || entry->include) {
Just following this line there is another call to VIR_FREE(entry) which leaks entry->rule and entry->include. This should be made to call virNWFilterEntryFree too
Would it be better to remove all the VIR_FREE(entry) and just put one virNWFilterEntryFree(entry) below the label cleanup ?
Yes, just make sure it is always initialized sanely.
Just realized.. variable entry is malloc'd each time in a loop, so it cannot be freed inside cleanup. Sending patch v2 -- Nehal J Wani