qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH] Monitor: Fix command execution regression


From: Blue Swirl
Subject: Re: [Qemu-devel] [PATCH] Monitor: Fix command execution regression
Date: Thu, 28 Jan 2010 19:20:06 +0000

Thanks, applied.


On Wed, Jan 27, 2010 at 8:01 PM, Luiz Capitulino <address@hidden> wrote:
>
> Function is_async_return() added by commit 940cc30d0d4 assumes
> that 'data', which is returned by handlers, is always a QDict.
>
> This is not true, as QLists can also be returned, in this case
> we'll get a segfault.
>
> Fix that by checking if 'data' is a QDict.
>
> Signed-off-by: Luiz Capitulino <address@hidden>
> ---
>  monitor.c |    6 +++++-
>  1 files changed, 5 insertions(+), 1 deletions(-)
>
> diff --git a/monitor.c b/monitor.c
> index fbae5ce..fb7c572 100644
> --- a/monitor.c
> +++ b/monitor.c
> @@ -3700,7 +3700,11 @@ static void monitor_print_error(Monitor *mon)
>
>  static int is_async_return(const QObject *data)
>  {
> -    return data && qdict_haskey(qobject_to_qdict(data), "__mon_async");
> +    if (data && qobject_type(data) == QTYPE_QDICT) {
> +        return qdict_haskey(qobject_to_qdict(data), "__mon_async");
> +    }
> +
> +    return 0;
>  }
>
>  static void monitor_call_handler(Monitor *mon, const mon_cmd_t *cmd,
> --
> 1.6.6
>
>
>
>




reply via email to

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