diff options
| author | Peter Maydell | 2017-01-10 20:21:54 +0100 |
|---|---|---|
| committer | Jason Wang | 2017-01-20 03:58:26 +0100 |
| commit | fac7d7b1cdb21f921d7ac396365f5e920ef03096 (patch) | |
| tree | dd3877fdffab1aa851a402520491ce3eb910c50e /net | |
| parent | hw/pci: use-after-free in pci_nic_init_nofail when nic device fails to initia... (diff) | |
| download | qemu-fac7d7b1cdb21f921d7ac396365f5e920ef03096.tar.gz qemu-fac7d7b1cdb21f921d7ac396365f5e920ef03096.tar.xz qemu-fac7d7b1cdb21f921d7ac396365f5e920ef03096.zip | |
tap: fix memory leak on failure in net_init_tap()
Commit 091a6b2ac fixed most of the memory leaks in failure
paths in net_init_tap() reported by Coverity (CID 1356216),
but missed one. Fix it by deferring the allocation of
fds and vhost_fds until after the error check.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'net')
| -rw-r--r-- | net/tap.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -788,8 +788,8 @@ int net_init_tap(const Netdev *netdev, const char *name, return -1; } } else if (tap->has_fds) { - char **fds = g_new0(char *, MAX_TAP_QUEUES); - char **vhost_fds = g_new0(char *, MAX_TAP_QUEUES); + char **fds; + char **vhost_fds; int nfds, nvhosts; if (tap->has_ifname || tap->has_script || tap->has_downscript || @@ -801,6 +801,9 @@ int net_init_tap(const Netdev *netdev, const char *name, return -1; } + fds = g_new0(char *, MAX_TAP_QUEUES); + vhost_fds = g_new0(char *, MAX_TAP_QUEUES); + nfds = get_fds(tap->fds, fds, MAX_TAP_QUEUES); if (tap->has_vhostfds) { nvhosts = get_fds(tap->vhostfds, vhost_fds, MAX_TAP_QUEUES); |
