mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2025-01-06 09:56:38 +00:00
Found a little bug in ARP_QUEUEING: if pbuf_alloc for the packet to be queued failed, pbuf_copy was called with a NULL pointer.
This commit is contained in:
parent
3c32c993f5
commit
6c39b8a10c
@ -865,9 +865,11 @@ err_t etharp_query(struct netif *netif, struct ip_addr *ipaddr, struct pbuf *q)
|
|||||||
if(copy_needed) {
|
if(copy_needed) {
|
||||||
/* copy the whole packet into new pbufs */
|
/* copy the whole packet into new pbufs */
|
||||||
p = pbuf_alloc(PBUF_RAW, p->tot_len, PBUF_RAM);
|
p = pbuf_alloc(PBUF_RAW, p->tot_len, PBUF_RAM);
|
||||||
if (pbuf_copy(p, q) != ERR_OK) {
|
if(p != NULL) {
|
||||||
pbuf_free(p);
|
if (pbuf_copy(p, q) != ERR_OK) {
|
||||||
p = NULL;
|
pbuf_free(p);
|
||||||
|
p = NULL;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
/* referencing the old pbuf is enough */
|
/* referencing the old pbuf is enough */
|
||||||
|
Loading…
Reference in New Issue
Block a user