Merge branch 'bugfix/mdns_clear_notif_value' into 'master'

mdns: Clear notification value in mdns_hostname_set

Closes IDFGH-6647

See merge request espressif/esp-idf!17121
pull/7554/merge
David Čermák 2022-02-21 07:20:22 +00:00
commit c04803e88b
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -5061,7 +5061,7 @@ esp_err_t mdns_hostname_set(const char * hostname)
free(action);
return ESP_ERR_NO_MEM;
}
xTaskNotifyWait(0, 0, NULL, portMAX_DELAY);
xTaskNotifyWait(0, 0x01, NULL, portMAX_DELAY);
return ESP_OK;
}