Signed-off-by: Hani Benhabiles <[email protected]>
Suggested-by: Andreas Färber <[email protected]>
---
qmp.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/qmp.c b/qmp.c
index 74107be..0d49abf 100644
--- a/qmp.c
+++ b/qmp.c
@@ -199,7 +199,10 @@ ObjectPropertyInfoList *qmp_qom_list(const char *path,
Error **errp)
ObjectProperty *prop;
obj = object_resolve_path(path, &ambiguous);
- if (obj == NULL) {
+ if (ambiguous) {
+ error_setg(errp, "Path '%s' is ambiguous", path);
+ return NULL;
+ } else if (obj == NULL) {
error_set(errp, QERR_DEVICE_NOT_FOUND, path);
return NULL;
}
--
1.8.3.2