esp-idf/examples/provisioning/legacy/softap_prov/main
Mahavir Jain 6a3d50c952 provisioning: use memcpy instead of strncpy for copying SSID
Per WiFi library requirement, SSID can be non-null terminated string
if its length goes to 32 bytes (maximum). Use of strncpy in this case,
along with compiler optimization level -O2 results in some warnings
for potential use of non-null terminated strings.

Fix here ensures use of memcpy to copy SSID string upto appropriate
desired length. This helps to avoid compiler specific workaround
flags added earlier.

Closes https://github.com/espressif/esp-idf/issues/5866
Closes IDFGH-3983
2020-09-17 12:59:22 +05:30
..
app_main.c provisioning_examples: Move older examples to legacy/ folder 2020-03-13 06:23:15 +00:00
app_prov_handlers.c provisioning: use memcpy instead of strncpy for copying SSID 2020-09-17 12:59:22 +05:30
app_prov.c legacy provisioning: Always try to reconnect when disconnected 2020-06-28 22:52:45 +00:00
app_prov.h provisioning_examples: Move older examples to legacy/ folder 2020-03-13 06:23:15 +00:00
CMakeLists.txt provisioning_examples: Move older examples to legacy/ folder 2020-03-13 06:23:15 +00:00
component.mk provisioning_examples: Move older examples to legacy/ folder 2020-03-13 06:23:15 +00:00
Kconfig.projbuild provisioning_examples: Move older examples to legacy/ folder 2020-03-13 06:23:15 +00:00