From 8aa0d786a97eda2761c334330d71328919d4c674 Mon Sep 17 00:00:00 2001 From: Steven Date: Fri, 27 Oct 2017 09:34:57 -0700 Subject: LDPRELOAD: Fix out-of-scope variable coverity error >>> CID 178271: Memory - illegal accesses (RETURN_LOCAL) >>> Using "ep", which points to an out-of-scope variable "_ep". Change-Id: Icf21e602bc2718bfedd9480e9da41aff8693048e Signed-off-by: Steven --- src/vcl/vcom_socket.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/vcl/vcom_socket.c b/src/vcl/vcom_socket.c index 5918f6b73d1..afcdc9548e2 100644 --- a/src/vcl/vcom_socket.c +++ b/src/vcl/vcom_socket.c @@ -1513,11 +1513,10 @@ vcom_session_sendto (int __sid, void *__buf, size_t __n, socklen_t __addr_len) { vppcom_endpt_t *ep = 0; + vppcom_endpt_t _ep; if (__addr) { - vppcom_endpt_t _ep; - ep = &_ep; ep->vrf = VPPCOM_VRF_DEFAULT; switch (__addr->sa_family) -- cgit 1.2.3-korg