diff --git a/sys/netinet/tcp_sack.c b/sys/netinet/tcp_sack.c index 924228f47140..aec8400e33c4 100644 --- a/sys/netinet/tcp_sack.c +++ b/sys/netinet/tcp_sack.c @@ -452,6 +452,8 @@ tcp_sack_option(struct tcpcb *tp, struct tcphdr *th, u_char *cp, int optlen) tp->snd_numholes++; tcp_sack_globalholes++; TAILQ_INSERT_TAIL(&tp->snd_holes, temp, scblink); + if (tp->sackhint.nexthole == NULL) + tp->sackhint.nexthole = temp; } if (SEQ_LT(tp->rcv_lastsack, sack.end)) tp->rcv_lastsack = sack.end;