mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-04 23:29:25 +00:00
fixed bug #38097 pbuf_free_ooseq() warning
This commit is contained in:
parent
86059bd5dd
commit
b844129649
@ -80,6 +80,9 @@ HISTORY
|
|||||||
|
|
||||||
++ Bugfixes:
|
++ Bugfixes:
|
||||||
|
|
||||||
|
2013-01-15: Simon Goldschmidt
|
||||||
|
* pbuf.h: fixed bug #38097 pbuf_free_ooseq() warning
|
||||||
|
|
||||||
2013-01-14: Simon Goldschmidt
|
2013-01-14: Simon Goldschmidt
|
||||||
* dns.c: fixed bug #37705 Possible memory corruption in DNS query
|
* dns.c: fixed bug #37705 Possible memory corruption in DNS query
|
||||||
|
|
||||||
|
@ -136,7 +136,7 @@ struct pbuf_custom {
|
|||||||
#endif /* PBUF_POOL_FREE_OOSEQ */
|
#endif /* PBUF_POOL_FREE_OOSEQ */
|
||||||
#if NO_SYS && PBUF_POOL_FREE_OOSEQ
|
#if NO_SYS && PBUF_POOL_FREE_OOSEQ
|
||||||
extern volatile u8_t pbuf_free_ooseq_pending;
|
extern volatile u8_t pbuf_free_ooseq_pending;
|
||||||
void pbuf_free_ooseq();
|
void pbuf_free_ooseq(void);
|
||||||
/** When not using sys_check_timeouts(), call PBUF_CHECK_FREE_OOSEQ()
|
/** When not using sys_check_timeouts(), call PBUF_CHECK_FREE_OOSEQ()
|
||||||
at regular intervals from main level to check if ooseq pbufs need to be
|
at regular intervals from main level to check if ooseq pbufs need to be
|
||||||
freed! */
|
freed! */
|
||||||
|
Loading…
Reference in New Issue
Block a user