On Wed, Jan 16, 2013 at 06:32:12PM +0100, Markus Armbruster wrote: > diff --git a/hw/9pfs/virtio-9p-device.c b/hw/9pfs/virtio-9p-device.c > index 6eab7f7..74155fb 100644 > --- a/hw/9pfs/virtio-9p-device.c > +++ b/hw/9pfs/virtio-9p-device.c > @@ -94,7 +94,7 @@ VirtIODevice *virtio_9p_init(DeviceState *dev, V9fsConf > *conf) > exit(1); > } > > - s->tag = strdup(conf->tag); > + s->tag = g_strdup(conf->tag); > s->ctx.uid = -1; > > s->ops = fse->ops;
s->tag is leaked. Want to send a follow-up patch to g_free() it?