From: Damjan Marion Date: Sat, 9 Dec 2017 20:19:01 +0000 (+0100) Subject: tap_v2: fix issues reported by coverity X-Git-Tag: v18.04-rc0~81 X-Git-Url: https://gerrit.fd.io/r/gitweb?p=vpp.git;a=commitdiff_plain;h=4e671d20c8bc6a45ff703625d78f6703c62094b7 tap_v2: fix issues reported by coverity Change-Id: I1bbd3f6ece255edfd4ebf268ac60f79dce1d10e7 Signed-off-by: Damjan Marion --- diff --git a/src/vnet/devices/tap/tap.c b/src/vnet/devices/tap/tap.c index f31548cbbec..4f76321071c 100644 --- a/src/vnet/devices/tap/tap.c +++ b/src/vnet/devices/tap/tap.c @@ -84,7 +84,7 @@ tap_create_if (vlib_main_t * vm, tap_create_if_args_t * args) tap_main_t *tm = &tap_main; vnet_sw_interface_t *sw; vnet_hw_interface_t *hw; - int i, fd = -1; + int i; int old_netns_fd = -1; struct ifreq ifr; size_t hdrsz; @@ -385,8 +385,8 @@ error: done: if (vhost_mem) clib_mem_free (vhost_mem); - if (fd != -1) - close (fd); + if (old_netns_fd != -1) + close (old_netns_fd); } int