diff options
author | Eugenio Pérez <eperezma@redhat.com> | 2022-02-14 20:34:15 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2022-02-22 17:15:36 +0100 |
commit | eb3cb751c9fbba3ba3dc640ff7f7cb4fe6a55829 (patch) | |
tree | f77699c5a6c87e031fb605b9c4d198efa5971f54 /net | |
parent | 35aab3032687140d7dee4fb10c5f051e31ef3b6a (diff) | |
download | qemu-eb3cb751c9fbba3ba3dc640ff7f7cb4fe6a55829.zip qemu-eb3cb751c9fbba3ba3dc640ff7f7cb4fe6a55829.tar.gz qemu-eb3cb751c9fbba3ba3dc640ff7f7cb4fe6a55829.tar.bz2 |
vdpa: Make ncs autofree
Simplifying memory management.
Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
Acked-by: Jason Wang <jasowang@redhat.com>
Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20220214193415.1606752-2-eperezma@redhat.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'net')
-rw-r--r-- | net/vhost-vdpa.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net/vhost-vdpa.c b/net/vhost-vdpa.c index 25dd6dd..1e9fe47 100644 --- a/net/vhost-vdpa.c +++ b/net/vhost-vdpa.c @@ -263,7 +263,8 @@ int net_init_vhost_vdpa(const Netdev *netdev, const char *name, { const NetdevVhostVDPAOptions *opts; int vdpa_device_fd; - NetClientState **ncs, *nc; + g_autofree NetClientState **ncs = NULL; + NetClientState *nc; int queue_pairs, i, has_cvq = 0; assert(netdev->type == NET_CLIENT_DRIVER_VHOST_VDPA); @@ -301,7 +302,6 @@ int net_init_vhost_vdpa(const Netdev *netdev, const char *name, goto err; } - g_free(ncs); return 0; err: @@ -309,7 +309,6 @@ err: qemu_del_net_client(ncs[0]); } qemu_close(vdpa_device_fd); - g_free(ncs); return -1; } |