From: Florin Coras Date: Sun, 19 Apr 2020 19:20:19 +0000 (+0000) Subject: session: fix half-open cleanup X-Git-Tag: v20.09-rc0~189 X-Git-Url: https://gerrit.fd.io/r/gitweb?p=vpp.git;a=commitdiff_plain;h=701c099fadc50e5b4058a0a317fea86a88a7e5eb session: fix half-open cleanup Type: fix Signed-off-by: Florin Coras Change-Id: I931d23cf617c8f24fe9a02982ab129785bbd184d --- diff --git a/src/vnet/session/application_worker.c b/src/vnet/session/application_worker.c index c67aa88db05..8eebaf003e6 100644 --- a/src/vnet/session/application_worker.c +++ b/src/vnet/session/application_worker.c @@ -60,7 +60,7 @@ app_worker_free (app_worker_t * app_wrk) segment_manager_t *sm; session_t *ls; u32 sm_index; - int i; + int i, j; /* * Listener cleanup @@ -114,8 +114,8 @@ app_worker_free (app_worker_t * app_wrk) })); /* *INDENT-ON* */ - for (i = 0; i < vec_len (handles); i++) - session_cleanup_half_open (i, handles[i]); + for (j = 0; j < vec_len (handles); j++) + session_cleanup_half_open (i, handles[j]); hash_free (app_wrk->half_open_table[i]); vec_reset_length (handles);