(no title)
zidel
|
2 months ago
Rust handles this by automatically unlocking when the MutexGuard returned by lock() is dropped. The issue here is not that the mutex remains locked, but rather that the data protected by the mutex might be inconsistent (and the mutex unlocked) after a panic.
bheadmaster|2 months ago
Thanks for the clarification.