Code Review
/
vpp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
101fc27
)
session: fix half-open cleanup
78/26578/1
author
Florin Coras
<
[email protected]
>
Sun, 19 Apr 2020 19:20:19 +0000
(19:20 +0000)
committer
Florin Coras
<
[email protected]
>
Sun, 19 Apr 2020 19:20:19 +0000
(19:20 +0000)
Type: fix
Signed-off-by: Florin Coras <
[email protected]
>
Change-Id: I931d23cf617c8f24fe9a02982ab129785bbd184d
src/vnet/session/application_worker.c
patch
|
blob
|
history
diff --git
a/src/vnet/session/application_worker.c
b/src/vnet/session/application_worker.c
index
c67aa88
..
8eebaf0
100644
(file)
--- 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);