error: Reduce unnecessary error propagation

When all we do with an Error we receive into a local variable is
propagating to somewhere else, we can just as well receive it there
right away, even when we need to keep error_propagate() for other
error paths.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-Id: <20200707160613.848843-38-armbru@redhat.com>
This commit is contained in:
Markus Armbruster 2020-07-07 18:06:05 +02:00
parent 992861fb1e
commit a5f9b9df25
8 changed files with 13 additions and 14 deletions

View file

@ -871,7 +871,7 @@ static void device_set_realized(Object *obj, bool value, Error **errp)
}
if (value && !dev->realized) {
if (!check_only_migratable(obj, &local_err)) {
if (!check_only_migratable(obj, errp)) {
goto fail;
}