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
Our static analyzer find a potential unsound issue (data races) in ProcessLock, where the unlock fuction needs to be marked as unsafe explicitly, otherwise safe Rust can have data races when user unlock unexpectedly, you can check lock-api for details.
Hi, thanks for your time to read this issue.
Our static analyzer find a potential unsound issue (data races) in
ProcessLock
, where the unlock fuction needs to be marked as unsafe explicitly, otherwise safe Rust can have data races when user unlock unexpectedly, you can check lock-api for details.ProcessLock/src/lib.rs
Lines 51 to 54 in 0c53991
A potentail PoC code is like:
Thanks again for your time.
The text was updated successfully, but these errors were encountered: