Merge pull request #6 from ucloud/bugfix_ota_destory
bug fix ota destory
This commit is contained in:
commit
57c3fded56
|
@ -282,7 +282,6 @@ int IOT_OTA_Destroy(void *handle)
|
||||||
}
|
}
|
||||||
|
|
||||||
osc_deinit(h_ota->ch_signal);
|
osc_deinit(h_ota->ch_signal);
|
||||||
ofc_deinit(h_ota->ch_fetch);
|
|
||||||
ota_lib_md5_deinit(h_ota->md5);
|
ota_lib_md5_deinit(h_ota->md5);
|
||||||
|
|
||||||
if (NULL != h_ota->url) {
|
if (NULL != h_ota->url) {
|
||||||
|
@ -305,6 +304,14 @@ int IOT_OTA_Destroy(void *handle)
|
||||||
HAL_Free(h_ota->download_name);
|
HAL_Free(h_ota->download_name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (NULL != h_ota->current_version) {
|
||||||
|
HAL_Free(h_ota->current_version);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (NULL != h_ota->taskID) {
|
||||||
|
HAL_Free(h_ota->taskID);
|
||||||
|
}
|
||||||
|
|
||||||
HAL_Free(h_ota);
|
HAL_Free(h_ota);
|
||||||
return SUCCESS_RET;
|
return SUCCESS_RET;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue