Skip to content

Commit

Permalink
hostapd: fix a segfault on sta disconnect with proxy arp enabled
Browse files Browse the repository at this point in the history
Signed-off-by: Felix Fietkau <nbd@nbd.name>
  • Loading branch information
nbd168 committed Jul 28, 2021
1 parent 7b46377 commit 5dd1bd5
Showing 1 changed file with 19 additions and 0 deletions.
@@ -0,0 +1,19 @@
From: Felix Fietkau <nbd@nbd.name>
Date: Wed, 28 Jul 2021 05:43:29 +0200
Subject: [PATCH] ndisc_snoop: call dl_list_del before freeing ipv6 addresses

Fixes a segmentation fault on sta disconnect

Signed-off-by: Felix Fietkau <nbd@nbd.name>
---

--- a/src/ap/ndisc_snoop.c
+++ b/src/ap/ndisc_snoop.c
@@ -61,6 +61,7 @@ void sta_ip6addr_del(struct hostapd_data
dl_list_for_each_safe(ip6addr, prev, &sta->ip6addr, struct ip6addr,
list) {
hostapd_drv_br_delete_ip_neigh(hapd, 6, (u8 *) &ip6addr->addr);
+ dl_list_del(&ip6addr->list);
os_free(ip6addr);
}
}

0 comments on commit 5dd1bd5

Please sign in to comment.