Re: [libvirt] [PATCH] esx: Fix freeing of heterogeneous lists

2010-07-30 Thread Matthias Bolte
2010/7/29 Eric Blake : > On 07/29/2010 04:29 AM, Matthias Bolte wrote: >> Always call the free function of the base type. The base type >> function then dynamically dispatches the call to the free function >> for the actual type. >> --- >>  src/esx/esx_vi_generator.py |   14 ++ >>  1 fi

Re: [libvirt] [PATCH] esx: Fix freeing of heterogeneous lists

2010-07-29 Thread Eric Blake
On 07/29/2010 04:29 AM, Matthias Bolte wrote: > Always call the free function of the base type. The base type > function then dynamically dispatches the call to the free function > for the actual type. > --- > src/esx/esx_vi_generator.py | 14 ++ > 1 files changed, 10 insertions(+),

[libvirt] [PATCH] esx: Fix freeing of heterogeneous lists

2010-07-29 Thread Matthias Bolte
Always call the free function of the base type. The base type function then dynamically dispatches the call to the free function for the actual type. --- src/esx/esx_vi_generator.py | 14 ++ 1 files changed, 10 insertions(+), 4 deletions(-) diff --git a/src/esx/esx_vi_generator.py b