diff options
author | Florin Coras <fcoras@cisco.com> | 2018-11-02 08:23:58 -0700 |
---|---|---|
committer | Florin Coras <fcoras@cisco.com> | 2018-11-02 08:26:24 -0700 |
commit | 776f3d85ebd4edfb70b0f748890f1efd98d8474c (patch) | |
tree | 9a558d2a4151aa2ba09c04e1bb5a012050d6b338 /src/vnet/tcp/tcp_input.c | |
parent | eb601240981a02f1baf0d52808503293382f8450 (diff) |
tcp: coverity fixes
Change-Id: Ib15d629c5fde7849bfa3307f42659e920eb0f463
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vnet/tcp/tcp_input.c')
-rw-r--r-- | src/vnet/tcp/tcp_input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/tcp/tcp_input.c b/src/vnet/tcp/tcp_input.c index fb2f1ddc9ef..21e5f3cdaba 100644 --- a/src/vnet/tcp/tcp_input.c +++ b/src/vnet/tcp/tcp_input.c @@ -1213,7 +1213,7 @@ tcp_do_fastretransmits (tcp_worker_ctx_t * wrk) _vec_len (wrk->postponed_fast_rxt) = 0; _vec_len (wrk->pending_fast_rxt) = 0; - max_burst_size = VLIB_FRAME_SIZE / vec_len (wrk->ongoing_fast_rxt); + max_burst_size = VLIB_FRAME_SIZE / vec_len (ongoing_fast_rxt); max_burst_size = clib_max (max_burst_size, 1); for (i = 0; i < vec_len (ongoing_fast_rxt); i++) |