[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH] hmp: fix memory leak at hmp_info_block_jobs()
From: |
Gonglei (Arei) |
Subject: |
Re: [Qemu-devel] [PATCH] hmp: fix memory leak at hmp_info_block_jobs() |
Date: |
Wed, 17 Sep 2014 01:04:06 +0000 |
> From: Markus Armbruster [mailto:address@hidden
> Sent: Tuesday, September 16, 2014 11:12 PM
> To: Gonglei (Arei)
> Cc: address@hidden; address@hidden; Huangweidong (C);
> address@hidden; address@hidden
> Subject: Re: [Qemu-devel] [PATCH] hmp: fix memory leak at
> hmp_info_block_jobs()
>
> <address@hidden> writes:
>
> > From: Gonglei <address@hidden>
> >
> > Signed-off-by: Gonglei <address@hidden>
> > ---
> > hmp.c | 2 ++
> > 1 file changed, 2 insertions(+)
> >
> > diff --git a/hmp.c b/hmp.c
> > index 40a90da..31fb6a1 100644
> > --- a/hmp.c
> > +++ b/hmp.c
> > @@ -679,6 +679,8 @@ void hmp_info_block_jobs(Monitor *mon, const
> QDict *qdict)
> > }
> > list = list->next;
> > }
> > +
> > + qapi_free_BlockJobInfoList(list);
> > }
> >
> > void hmp_info_tpm(Monitor *mon, const QDict *qdict)
>
> Reviewed-by: Markus Armbruster <address@hidden>
Thanks for review. :)
Best regards,
-Gonglei