[PATCH 2/4] vl: Free accel_list in configure_accelerators

2020-01-09 Thread Aleksandar Markovic
On Thursday, January 9, 2020, Laurent Vivier wrote: > On 09/01/2020 09:18, Thomas Huth wrote: > > On 09/01/2020 03.17, Richard Henderson wrote: > >> We allocate the list with g_strsplit, so free it too. > >> This freeing was lost during one of the rearrangements. > >> > >> Fixes: 6f6e1698a68c >

Re: [PATCH 2/4] vl: Free accel_list in configure_accelerators

2020-01-09 Thread Alex Bennée
Richard Henderson writes: > We allocate the list with g_strsplit, so free it too. > This freeing was lost during one of the rearrangements. > > Fixes: 6f6e1698a68c > Signed-off-by: Richard Henderson Reviewed-by: Alex Bennée > --- > vl.c | 4 +++- > 1 file changed, 3 insertions(+), 1

Re: [PATCH 2/4] vl: Free accel_list in configure_accelerators

2020-01-09 Thread Laurent Vivier
On 09/01/2020 09:18, Thomas Huth wrote: > On 09/01/2020 03.17, Richard Henderson wrote: >> We allocate the list with g_strsplit, so free it too. >> This freeing was lost during one of the rearrangements. >> >> Fixes: 6f6e1698a68c >> Signed-off-by: Richard Henderson >> --- >> vl.c | 4 +++- >> 1

Re: [PATCH 2/4] vl: Free accel_list in configure_accelerators

2020-01-09 Thread Thomas Huth
On 09/01/2020 03.17, Richard Henderson wrote: > We allocate the list with g_strsplit, so free it too. > This freeing was lost during one of the rearrangements. > > Fixes: 6f6e1698a68c > Signed-off-by: Richard Henderson > --- > vl.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > >

[PATCH 2/4] vl: Free accel_list in configure_accelerators

2020-01-08 Thread Richard Henderson
We allocate the list with g_strsplit, so free it too. This freeing was lost during one of the rearrangements. Fixes: 6f6e1698a68c Signed-off-by: Richard Henderson --- vl.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vl.c b/vl.c index be79b03c1a..c9329fe699 100644 ---