Revision 82617d7c

b/monitor.c
3700 3700

  
3701 3701
static int is_async_return(const QObject *data)
3702 3702
{
3703
    return data && qdict_haskey(qobject_to_qdict(data), "__mon_async");
3703
    if (data && qobject_type(data) == QTYPE_QDICT) {
3704
        return qdict_haskey(qobject_to_qdict(data), "__mon_async");
3705
    }
3706

  
3707
    return 0;
3704 3708
}
3705 3709

  
3706 3710
static void monitor_call_handler(Monitor *mon, const mon_cmd_t *cmd,

Also available in: Unified diff