Il 15/05/2012 15:04, j...@meyering.net ha scritto: > diff --git a/hw/scsi-bus.c b/hw/scsi-bus.c > index 8ab9bcd..a4e93d1 100644 > --- a/hw/scsi-bus.c > +++ b/hw/scsi-bus.c > @@ -1470,12 +1470,8 @@ static char *scsibus_get_dev_path(DeviceState *dev) > static char *scsibus_get_fw_dev_path(DeviceState *dev) > { > SCSIDevice *d = SCSI_DEVICE(dev); > - char path[100]; > - > - snprintf(path, sizeof(path), "channel@%x/%s@%x,%x", d->channel, > - qdev_fw_name(dev), d->id, d->lun); > - > - return strdup(path); > + return g_strdup_printf("channel@%x/%s@%x,%x", d->channel, > + qdev_fw_name(dev), d->id, d->lun); > } > > SCSIDevice *scsi_device_find(SCSIBus *bus, int channel, int id, int lun)
Acked-by: Paolo Bonzini <pbonz...@redhat.com> I'm assuming that these will be handled by a global committer. Paolo