fix lwip tcp_oversize_dbgcheck assert
This commit is contained in:
parent
5e50c9d884
commit
336c4b4a55
1 changed files with 3 additions and 0 deletions
|
@ -1066,6 +1066,9 @@ tcp_output(struct tcp_pcb *pcb)
|
|||
|
||||
#if TCP_OVERSIZE_DBGCHECK
|
||||
seg->oversize_left = 0;
|
||||
if (seg->next == NULL) {
|
||||
pcb->unsent_oversize = 0;
|
||||
}
|
||||
#endif /* TCP_OVERSIZE_DBGCHECK */
|
||||
err = tcp_output_segment(seg, pcb);
|
||||
if ((err != ERR_OK) && (err != ERR_RTE)) {
|
||||
|
|
Loading…
Reference in a new issue