mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-04 13:14:32 +02:00
Merge branch 'feature/github-7248' into 'master'
wpa_supplicant: Fix wps_free_pins to remove all pins Closes IDFGH-5519 See merge request espressif/esp-idf!15419
This commit is contained in:
@@ -101,7 +101,7 @@ static void wps_remove_pin(struct wps_uuid_pin *pin)
|
|||||||
static void wps_free_pins(struct dl_list *pins)
|
static void wps_free_pins(struct dl_list *pins)
|
||||||
{
|
{
|
||||||
struct wps_uuid_pin *pin, *prev;
|
struct wps_uuid_pin *pin, *prev;
|
||||||
dl_list_for_each_safe(pin, prev, pins, struct wps_uuid_pin, list);
|
dl_list_for_each_safe(pin, prev, pins, struct wps_uuid_pin, list)
|
||||||
wps_remove_pin(pin);
|
wps_remove_pin(pin);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user