bugfix remove file name

This commit is contained in:
ethan.du 2020-04-27 10:22:06 +08:00
parent 619d9ffc0c
commit 4844e9ef00
1 changed files with 0 additions and 1 deletions

View File

@ -325,7 +325,6 @@ void IOT_OTA_Clear(void *handle)
{ {
OTA_Struct_t *h_ota = (OTA_Struct_t *)handle; OTA_Struct_t *h_ota = (OTA_Struct_t *)handle;
memset(h_ota->url, 0, strlen(h_ota->url)); 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)); memset(h_ota->version, 0, strlen(h_ota->version));
memset(h_ota->md5sum, 0, strlen(h_ota->md5sum)); memset(h_ota->md5sum, 0, strlen(h_ota->md5sum));
h_ota->state = OTA_STATE_UNINITED; h_ota->state = OTA_STATE_UNINITED;