qapi: Drop redundant, unclean error_is_set()
commit4af8be1f88dc32447e085469461d02859ca5f2fc
authorMarkus Armbruster <armbru@redhat.com>
Fri, 2 May 2014 11:26:35 +0000 (2 13:26 +0200)
committerLuiz Capitulino <lcapitulino@redhat.com>
Fri, 9 May 2014 13:11:31 +0000 (9 09:11 -0400)
tree367dce49d7a151d2b59572ab8ff2d250f6feb1a3
parent415168e0c7bda5371a876914d4fdb68c4556f28d
qapi: Drop redundant, unclean error_is_set()

do_qmp_dispatch()'s test for qmp_dispatch_check_obj() failure examines
both the return value and the error object.  The latter part is
unclean; it works only when do_qmp_dispatch()'s caller passes a
non-null errp argument.  That's the case, but it's not locally
obvious.  Unclean.

Cleanup would be easy enough, but since the unclean code is also
redundant, let's just drop it.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Michael Roth <mdroth@linux.vnet.ibm.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
qapi/qmp-dispatch.c