fix http close after ota success

This commit is contained in:
ethan.du 2020-07-28 10:58:55 +08:00
parent 7b5f0c78c6
commit b6861a8bda
1 changed files with 2 additions and 0 deletions

View File

@ -310,6 +310,8 @@ int IOT_OTA_Destroy(void *handle)
void IOT_OTA_Clear(void *handle)
{
OTA_Struct_t *h_ota = (OTA_Struct_t *)handle;
ofc_deinit(h_ota->ch_fetch);
memset(h_ota->url, 0, strlen(h_ota->url));
memset(h_ota->download_file_name, 0, strlen(h_ota->download_file_name));
memset(h_ota->version, 0, strlen(h_ota->version));