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
The following code is wrong as shm->tee is unpredictable
because of the former free():
tee_shm_free(shm);
mutex_unlock(&shm->tee->lock);
It is fixed in
tee_shm_free(shm);
mutex_unlock(&tee->lock);
Reviewed-by: Jens Wiklander <[email protected]>
Signed-off-by: Pascal Brand <[email protected]>
0 commit comments