Commit 0705ecc4 authored by Mao Zhongyi's avatar Mao Zhongyi Committed by Dr. David Alan Gilbert
Browse files

monitor/hmp-cmds: delete redundant Error check before invoke hmp_handle_error()



hmp_handle_error() does Error check internally.

Signed-off-by: default avatarMao Zhongyi <maozhongyi@cmss.chinamobile.com>
Message-Id: <20200603080904.997083-6-maozhongyi@cmss.chinamobile.com>
Reviewed-by: default avatarDr. David Alan Gilbert <dgilbert@redhat.com>
Signed-off-by: default avatarDr. David Alan Gilbert <dgilbert@redhat.com>
parent fe025508
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -1637,9 +1637,8 @@ void hmp_object_add(Monitor *mon, const QDict *qdict)
    obj = user_creatable_add_opts(opts, &err);
    qemu_opts_del(opts);

    if (err) {
    hmp_handle_error(mon, err);
    }

    if (obj) {
        object_unref(obj);
    }