qcacld-3.0: Fix use after free of HDD context

HDD context is freed as part of wiphy_free() kernel API call
and after it any access of HDD context member variable will
lead to use after panic. Make sure to destroy iface change
mutex before HDD context is freed as part of wiphy_free.

Change-Id: Ic447501c8c7faad7cc7322e5fdb112cb74e5d7ad
CRs-Fixed: 2169505
This commit is contained in:
Rajeev Kumar
2018-01-09 14:12:41 -08:00
committed by snandini
parent 01a45f7d33
commit fa55a6954b

View File

@@ -8220,8 +8220,8 @@ err_free_config:
qdf_mem_free(hdd_ctx->config);
err_free_hdd_context:
wiphy_free(hdd_ctx->wiphy);
mutex_destroy(&hdd_ctx->iface_change_lock);
wiphy_free(hdd_ctx->wiphy);
err_out:
return ERR_PTR(ret);