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

hmp_handle_error() does Error check internally.

Signed-off-by: Mao Zhongyi <maozhongyi@cmss.chinamobile.com>
Message-Id: <20200603080904.997083-6-maozhongyi@cmss.chinamobile.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
This commit is contained in:
Mao Zhongyi 2020-06-03 16:09:00 +08:00 committed by Dr. David Alan Gilbert
parent fe025508c0
commit 0705ecc4ad
1 changed files with 2 additions and 3 deletions

View File

@ -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);
}
hmp_handle_error(mon, err);
if (obj) {
object_unref(obj);
}