mirror of
https://github.com/qemu/qemu.git
synced 2024-11-28 22:33:36 +08:00
hw/ppc/spapr_vio.c: use g_autofree in spapr_dt_vdevice()
And return the result of g_strdup_printf() directly instead of using the 'path' var. Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20220228175004.8862-15-danielhb413@gmail.com> Signed-off-by: Cédric Le Goater <clg@kaod.org>
This commit is contained in:
parent
3a1229148d
commit
1695184305
@ -726,7 +726,7 @@ void spapr_dt_vdevice(SpaprVioBus *bus, void *fdt)
|
||||
gchar *spapr_vio_stdout_path(SpaprVioBus *bus)
|
||||
{
|
||||
SpaprVioDevice *dev;
|
||||
char *name, *path;
|
||||
g_autofree char *name = NULL;
|
||||
|
||||
dev = spapr_vty_get_default(bus);
|
||||
if (!dev) {
|
||||
@ -734,8 +734,6 @@ gchar *spapr_vio_stdout_path(SpaprVioBus *bus)
|
||||
}
|
||||
|
||||
name = spapr_vio_get_dev_name(DEVICE(dev));
|
||||
path = g_strdup_printf("/vdevice/%s", name);
|
||||
|
||||
g_free(name);
|
||||
return path;
|
||||
return g_strdup_printf("/vdevice/%s", name);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user