mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 11:39:53 +00:00
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:
parent
fe025508c0
commit
0705ecc4ad
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user