diff options
| author | Eduardo Habkost <ehabkost@redhat.com> | 2016-06-13 18:57:56 -0300 |
|---|---|---|
| committer | Markus Armbruster <armbru@redhat.com> | 2016-06-20 16:38:13 +0200 |
| commit | 621ff94d5074d88253a5818c6b9c4db718fbfc65 (patch) | |
| tree | 471a14faadcea9b57a834801610e2079264e4920 /hw/usb/dev-storage.c | |
| parent | da002526ac30f679b0c797b0d71102dcdf200fe6 (diff) | |
| download | focaccia-qemu-621ff94d5074d88253a5818c6b9c4db718fbfc65.tar.gz focaccia-qemu-621ff94d5074d88253a5818c6b9c4db718fbfc65.zip | |
error: Remove NULL checks on error_propagate() calls
error_propagate() already ignores local_err==NULL, so there's no need to check it before calling. Coccinelle patch used to perform the changes added to scripts/coccinelle/error_propagate_null.cocci. Reviewed-by: Eric Blake <eblake@redhat.com> Acked-by: Cornelia Huck <cornelia.huck@de.ibm.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Message-Id: <1465855078-19435-2-git-send-email-ehabkost@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'hw/usb/dev-storage.c')
| -rw-r--r-- | hw/usb/dev-storage.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/hw/usb/dev-storage.c b/hw/usb/dev-storage.c index 248a580457..9fd00dfffc 100644 --- a/hw/usb/dev-storage.c +++ b/hw/usb/dev-storage.c @@ -818,9 +818,7 @@ static void usb_msd_set_bootindex(Object *obj, Visitor *v, const char *name, } out: - if (local_err) { - error_propagate(errp, local_err); - } + error_propagate(errp, local_err); } static const TypeInfo usb_storage_dev_type_info = { |