qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 6/8] qom: do not return root for empty path


From: Andreas Färber
Subject: Re: [Qemu-devel] [PATCH 6/8] qom: do not return root for empty path
Date: Mon, 29 Apr 2013 19:30:50 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130329 Thunderbird/17.0.5

Am 18.04.2013 18:44, schrieb Paolo Bonzini:
> An empty path will return the sole object of that type in the
> QOM tree.  This is different from "/", which returns the root.
> 
> Signed-off-by: Paolo Bonzini <address@hidden>

Looks OK to me, but not confident about callers' expectations.
Might this need a documentation update? CC'ing Mr. QOM.

Andreas

> ---
>  qom/object.c | 12 ++----------
>  1 file changed, 2 insertions(+), 10 deletions(-)
> 
> diff --git a/qom/object.c b/qom/object.c
> index 093502e..dd53d24 100644
> --- a/qom/object.c
> +++ b/qom/object.c
> @@ -1113,21 +1113,13 @@ static Object *object_resolve_partial_path(Object 
> *parent,
>  Object *object_resolve_path_type(const char *path, const char *typename,
>                                   bool *ambiguous)
>  {
> -    bool partial_path = true;
>      Object *obj;
>      gchar **parts;
>  
>      parts = g_strsplit(path, "/", 0);
> -    if (parts == NULL || parts[0] == NULL) {
> -        g_strfreev(parts);
> -        return object_get_root();
> -    }
> -
> -    if (strcmp(parts[0], "") == 0) {
> -        partial_path = false;
> -    }
> +    assert(parts);
>  
> -    if (partial_path) {
> +    if (parts[0] == NULL || strcmp(parts[0], "") != 0) {
>          if (ambiguous) {
>              *ambiguous = false;
>          }
> 


-- 
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg



reply via email to

[Prev in Thread] Current Thread [Next in Thread]