From: Florin Coras Date: Wed, 30 Jun 2021 14:54:29 +0000 (-0700) Subject: vcl: coverity fixes X-Git-Tag: v22.02-rc0~241 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=734268f484d8deb5d2054dadc890e48b26f77feb;p=vpp.git vcl: coverity fixes Type: fix Signed-off-by: Florin Coras Change-Id: I290e4b0dff6afe7ce755074f3aaaf945dbbf3e09 --- diff --git a/src/vcl/vppcom.c b/src/vcl/vppcom.c index 73ec40b42b8..ddd5e0b9e19 100644 --- a/src/vcl/vppcom.c +++ b/src/vcl/vppcom.c @@ -3266,7 +3266,7 @@ static void vcl_epoll_wait_handle_lt (vcl_worker_t *wrk, struct epoll_event *events, int maxevents, u32 *n_evts) { - u32 add_event, next; + u32 add_event = 0, next; vcl_session_t *s; u64 evt_data; int rv;