[Spice-devel] [PATCH spice-server] stat-file: Exit earlier to reduce indentation

Christophe de Dinechin cdupontd at redhat.com
Mon Jun 25 11:59:19 UTC 2018



> On 25 Jun 2018, at 12:46, Frediano Ziglio <fziglio at redhat.com> wrote:
> 
> Just style change. Invert the if to exit earlier.
> 
> Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
> ---
> server/stat-file.c | 5 ++---
> 1 file changed, 2 insertions(+), 3 deletions(-)
> 
> diff --git a/server/stat-file.c b/server/stat-file.c
> index 45dece65..b2c199f3 100644
> --- a/server/stat-file.c
> +++ b/server/stat-file.c
> @@ -154,12 +154,11 @@ stat_file_add_node(RedStatFile *stat_file, StatNodeRef parent, const char *name,
>                                         stat_file->stat->nodes[parent].first_child_index);
>     while (ref != INVALID_STAT_REF) {
>         node = &stat_file->stat->nodes[ref];
> -        if (strcmp(name, node->name)) {
> -            ref = node->next_sibling_index;
> -        } else {
> +        if (strcmp(name, node->name) == 0) {
>             pthread_mutex_unlock(&stat_file->lock);
>             return ref;
>         }
> +        ref = node->next_sibling_index;
>     }
>     for (ref = 0; ref < stat_file->max_nodes; ref++) {
>         node = &stat_file->stat->nodes[ref];
>
Not a big win, but why not…

Acked-by: Christophe de Dinechin <dinechin at redhat.com> 

> 2.17.1
> 
> _______________________________________________
> Spice-devel mailing list
> Spice-devel at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/spice-devel



More information about the Spice-devel mailing list