On Wed, 13 Apr 2016 18:57:40 +0200 marcandre.lur...@redhat.com wrote: > From: Marc-André Lureau <marcandre.lur...@redhat.com> > > Signed-off-by: Marc-André Lureau <marcandre.lur...@redhat.com> Reviewed-by: Igor Mammedov <imamm...@redhat.com>
> --- > backends/hostmem-file.c | 8 ++++++++ > 1 file changed, 8 insertions(+) > > diff --git a/backends/hostmem-file.c b/backends/hostmem-file.c > index b17a1f1..5c4b808 100644 > --- a/backends/hostmem-file.c > +++ b/backends/hostmem-file.c > @@ -121,11 +121,19 @@ file_backend_instance_init(Object *o) > set_mem_path, NULL); > } > > +static void file_backend_instance_finalize(Object *o) > +{ > + HostMemoryBackendFile *fb = MEMORY_BACKEND_FILE(o); > + > + g_free(fb->mem_path); > +} > + > static const TypeInfo file_backend_info = { > .name = TYPE_MEMORY_BACKEND_FILE, > .parent = TYPE_MEMORY_BACKEND, > .class_init = file_backend_class_init, > .instance_init = file_backend_instance_init, > + .instance_finalize = file_backend_instance_finalize, > .instance_size = sizeof(HostMemoryBackendFile), > }; >