Skip to content

Commit

Permalink
Merge branch 'fix/ot_netif_destroy_order_issue' into 'main'
Browse files Browse the repository at this point in the history
fix(br): fix ot netif destroy netif order issue

See merge request espressif/esp-thread-br!104
  • Loading branch information
chshu committed Dec 18, 2023
2 parents 98e0393 + c32463b commit 2be04da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ static void ot_task_worker(void *ctx)

// Clean up
esp_netif_destroy(openthread_netif);
esp_openthread_netif_glue_deinit();
esp_vfs_eventfd_unregister();
esp_openthread_netif_glue_deinit();
esp_rcp_update_deinit();
vTaskDelete(NULL);
}
Expand Down

0 comments on commit 2be04da

Please sign in to comment.