aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/tcp
diff options
context:
space:
mode:
authorFlorin Coras <fcoras@cisco.com>2020-02-20 16:04:03 +0000
committerDave Wallace <dwallacelf@gmail.com>2020-08-12 23:15:37 +0000
commitee0c564c31f44b1223abf5d1597cafa324ac7dcd (patch)
tree28760122b0962cb8122053e135d1fb334b354981 /src/vnet/tcp
parentf1f51770f37c963216b8d4ef893b0350a640a5ba (diff)
tcp: fix coverity warning in bt
Type: fix Signed-off-by: Florin Coras <fcoras@cisco.com> Change-Id: I4153a9a377b8b1da1366a94ff791ad99617b7a6d (cherry picked from commit 62a7fe28933b6310b9a4e3a0fab99949587576ac)
Diffstat (limited to 'src/vnet/tcp')
-rw-r--r--src/vnet/tcp/tcp_bt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/tcp/tcp_bt.c b/src/vnet/tcp/tcp_bt.c
index e8cf0680d4d..b6649444eb5 100644
--- a/src/vnet/tcp/tcp_bt.c
+++ b/src/vnet/tcp/tcp_bt.c
@@ -402,7 +402,7 @@ tcp_bt_track_rxt (tcp_connection_t * tc, u32 start, u32 end)
bts_index = bt_sample_index (bt, bts);
next = bt_next_sample (bt, bts);
if (next)
- next = bt_fix_overlapped (bt, next, end, is_end);
+ bt_fix_overlapped (bt, next, end, is_end);
max_seq = bts->max_seq;
ASSERT (seq_lt (start, max_seq));