mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2025-01-29 18:32:46 +00:00
fixed compiling TCP_OOSEQ_MAX_BYTES || TCP_OOSEQ_MAX_PBUFS (local variable 'p' was hidden)
This commit is contained in:
parent
aeb3834219
commit
3e23eb764b
@ -997,7 +997,6 @@ tcp_receive(struct tcp_pcb *pcb)
|
||||
#if TCP_QUEUE_OOSEQ
|
||||
struct tcp_seg *prev, *cseg;
|
||||
#endif /* TCP_QUEUE_OOSEQ */
|
||||
struct pbuf *p;
|
||||
s32_t off;
|
||||
s16_t m;
|
||||
u32_t right_wnd_edge;
|
||||
@ -1314,8 +1313,8 @@ tcp_receive(struct tcp_pcb *pcb)
|
||||
adjust the ->data pointer in the seg and the segment
|
||||
length.*/
|
||||
|
||||
struct pbuf *p = inseg.p;
|
||||
off = pcb->rcv_nxt - seqno;
|
||||
p = inseg.p;
|
||||
LWIP_ASSERT("inseg.p != NULL", inseg.p);
|
||||
LWIP_ASSERT("insane offset!", (off < 0x7fff));
|
||||
if (inseg.p->len < off) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user