mirror of
https://github.com/espressif/openthread.git
synced 2026-09-26 02:47:36 +00:00
[nrf528xx] fix void * dereference (#4391)
This commit is contained in:
committed by
Jonathan Hui
parent
232b73477a
commit
1d5497ef7f
+1
-1
@@ -115,7 +115,7 @@ static void mutex_free(nrf_cc310_platform_mutex_t *mutex)
|
||||
|
||||
p_mutex = (SemaphoreHandle_t)mutex->mutex;
|
||||
|
||||
vSemaphoreDelete(*p_mutex);
|
||||
vSemaphoreDelete(p_mutex);
|
||||
|
||||
/* Reset the mutex to invalid state */
|
||||
mutex->flags = NRF_CC310_PLATFORM_MUTEX_MASK_INVALID;
|
||||
|
||||
Reference in New Issue
Block a user