mirror of
https://github.com/qemu/qemu.git
synced 2024-11-28 22:33:36 +08:00
qom: support orphan objects in object_get_canonical_path
Mostly a rewrite, in order to keep the loop simple. Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
24ed117232
commit
e40077fd2c
30
qom/object.c
30
qom/object.c
@ -1669,25 +1669,29 @@ gchar *object_get_canonical_path(Object *obj)
|
||||
Object *root = object_get_root();
|
||||
char *newpath, *path = NULL;
|
||||
|
||||
while (obj != root) {
|
||||
if (obj == root) {
|
||||
return g_strdup("/");
|
||||
}
|
||||
|
||||
do {
|
||||
char *component = object_get_canonical_path_component(obj);
|
||||
|
||||
if (path) {
|
||||
newpath = g_strdup_printf("%s/%s", component, path);
|
||||
if (!component) {
|
||||
/* A canonical path must be complete, so discard what was
|
||||
* collected so far.
|
||||
*/
|
||||
g_free(path);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
newpath = g_strdup_printf("/%s%s", component, path ? path : "");
|
||||
g_free(path);
|
||||
g_free(component);
|
||||
g_free(path);
|
||||
path = newpath;
|
||||
} else {
|
||||
path = component;
|
||||
}
|
||||
|
||||
obj = obj->parent;
|
||||
}
|
||||
} while (obj != root);
|
||||
|
||||
newpath = g_strdup_printf("/%s", path ? path : "");
|
||||
g_free(path);
|
||||
|
||||
return newpath;
|
||||
return path;
|
||||
}
|
||||
|
||||
Object *object_resolve_path_component(Object *parent, const gchar *part)
|
||||
|
Loading…
Reference in New Issue
Block a user