From: Markus Armbruster Date: Fri, 2 May 2014 11:26:35 +0000 (+0200) Subject: qapi: Drop redundant, unclean error_is_set() X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~858^2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4af8be1f88dc32447e085469461d02859ca5f2fc;p=sdk%2Femulator%2Fqemu.git 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 Reviewed-by: Eric Blake Reviewed-by: Michael Roth Signed-off-by: Luiz Capitulino --- diff --git a/qapi/qmp-dispatch.c b/qapi/qmp-dispatch.c index 141a376..187af56 100644 --- a/qapi/qmp-dispatch.c +++ b/qapi/qmp-dispatch.c @@ -67,9 +67,8 @@ static QObject *do_qmp_dispatch(QObject *request, Error **errp) QmpCommand *cmd; QObject *ret = NULL; - dict = qmp_dispatch_check_obj(request, errp); - if (!dict || error_is_set(errp)) { + if (!dict) { return NULL; }