mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
add exception handling for iperf example's scan when no ap was found
This commit is contained in:
parent
d8082b7f39
commit
44f22150f2
@ -60,6 +60,11 @@ static void scan_done_handler(void)
|
||||
wifi_ap_record_t *ap_list_buffer;
|
||||
|
||||
esp_wifi_scan_get_ap_num(&sta_number);
|
||||
if (!sta_number) {
|
||||
ESP_LOGE(TAG, "No AP found");
|
||||
return;
|
||||
}
|
||||
|
||||
ap_list_buffer = malloc(sta_number * sizeof(wifi_ap_record_t));
|
||||
if (ap_list_buffer == NULL) {
|
||||
ESP_LOGE(TAG, "Failed to malloc buffer to print scan results");
|
||||
|
Loading…
Reference in New Issue
Block a user