1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 04:52:59 +01:00

gnrc_ipv6: fix double free when pinging TNT loopback address

This commit is contained in:
Jose Alamos 2024-01-29 14:34:41 +01:00
parent 8f111a3c29
commit 8dc5e9109e
No known key found for this signature in database
GPG Key ID: F483EB800EF89DD9

View File

@ -634,9 +634,13 @@ static void _send_multicast(gnrc_pktsnip_t *pkt, bool prep_hdr,
static void _send_to_self(gnrc_pktsnip_t *pkt, bool prep_hdr,
gnrc_netif_t *netif)
{
if (!_safe_fill_ipv6_hdr(netif, pkt, prep_hdr) ||
/* no netif header so we just merge the whole packet. */
(gnrc_pktbuf_merge(pkt) != 0)) {
/* _safe_fill_ipv6_hdr releases pkt on error */
if (!_safe_fill_ipv6_hdr(netif, pkt, prep_hdr)) {
DEBUG("ipv6: error looping packet to sender.\n");
return;
}
/* no netif header so we just merge the whole packet. */
else if (gnrc_pktbuf_merge(pkt) != 0) {
DEBUG("ipv6: error looping packet to sender.\n");
gnrc_pktbuf_release(pkt);
return;