mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-25 18:14:53 +00:00
make it call etharp_output_sent() in tapif_output.This is to prevent the recently
discovered memory leak.
This commit is contained in:
parent
428293a69b
commit
6ef24c4e48
@ -262,6 +262,8 @@ tapif_output(struct netif *netif, struct pbuf *p,
|
||||
p = etharp_output(netif, ipaddr, p);
|
||||
if(p != NULL) {
|
||||
return low_level_output(netif, p);
|
||||
etharp_output_sent(p);
|
||||
p = NULL;
|
||||
}
|
||||
return ERR_OK;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user