mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-27 06:14:09 +00:00
pbuf_ref: assert-check for 'ref' overflow
This commit is contained in:
parent
e94e2da3ec
commit
76763c9bcd
@ -828,6 +828,7 @@ pbuf_ref(struct pbuf *p)
|
|||||||
/* pbuf given? */
|
/* pbuf given? */
|
||||||
if (p != NULL) {
|
if (p != NULL) {
|
||||||
SYS_ARCH_INC(p->ref, 1);
|
SYS_ARCH_INC(p->ref, 1);
|
||||||
|
LWIP_ASSERT("pbuf ref overflow", p->ref > 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user