diff options
| author | Markus Armbruster <armbru@redhat.com> | 2022-11-21 09:50:46 +0100 |
|---|---|---|
| committer | Markus Armbruster <armbru@redhat.com> | 2022-12-14 16:19:35 +0100 |
| commit | 740d6c4eba8bb44ea00550ccc97a4c49945ecc3c (patch) | |
| tree | 944dd4ac26340610b52c35d548c7d2bc035b4ce6 /hw/remote | |
| parent | 6c37ebf3301ca449ebe449138b86e55762503250 (diff) | |
| download | focaccia-qemu-740d6c4eba8bb44ea00550ccc97a4c49945ecc3c.tar.gz focaccia-qemu-740d6c4eba8bb44ea00550ccc97a4c49945ecc3c.zip | |
error: Drop a few superfluous ERRP_GUARD()
include/qapi/error.h on ERRP_GUARD(): * It must be used when the function dereferences @errp or passes * @errp to error_prepend(), error_vprepend(), or error_append_hint(). * It is safe to use even when it's not needed, but please avoid * cluttering the source with useless code. Clean up some of this clutter. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20221121085054.683122-3-armbru@redhat.com>
Diffstat (limited to 'hw/remote')
| -rw-r--r-- | hw/remote/vfio-user-obj.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/remote/vfio-user-obj.c b/hw/remote/vfio-user-obj.c index 4e36bb8bcf..6d0310cec9 100644 --- a/hw/remote/vfio-user-obj.c +++ b/hw/remote/vfio-user-obj.c @@ -719,7 +719,6 @@ static void vfu_object_machine_done(Notifier *notifier, void *data) */ static void vfu_object_init_ctx(VfuObject *o, Error **errp) { - ERRP_GUARD(); DeviceState *dev = NULL; vfu_pci_type_t pci_type = VFU_PCI_TYPE_CONVENTIONAL; int ret; |