You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We observed that there can sometimes be, rarely but not never, crashes of Thread-based devices during commissioning that arises during OpenThread state change even logging on the Thread interface.
During analysis, we found that this line calls a method with the following documentation:
/**
* Log information related to a state change in the OpenThread stack.
*
* NB: This function *must* be called with the Thread stack lock held.
*/
void LogOpenThreadStateChange(otInstance * otInst, uint32_t flags)
However, at the call site, the Thread stack lock is missing.
The text was updated successfully, but these errors were encountered:
We observed that there can sometimes be, rarely but not never, crashes of Thread-based devices during commissioning that arises during OpenThread state change even logging on the Thread interface.
Example:
During analysis, we found that this line calls a method with the following documentation:
However, at the call site, the Thread stack lock is missing.
The text was updated successfully, but these errors were encountered: