Skip to content

Commit ad73330

Browse files
committed
Fix RwLock*Guard::map to not allow escaping a reference to the data.
Also update the instability reason to include a note about a possible bad interaction with condition variables on systems that allow waiting on a RwLock guard.
1 parent 34af2de commit ad73330

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/libstd/sync/rwlock.rs

+6-4
Original file line numberDiff line numberDiff line change
@@ -454,10 +454,11 @@ impl<'rwlock, T: ?Sized> RwLockReadGuard<'rwlock, T> {
454454
/// assert_eq!(*y, 1);
455455
/// ```
456456
#[unstable(feature = "guard_map",
457-
reason = "recently added, needs RFC for stabilization",
457+
reason = "recently added, needs RFC for stabilization,
458+
questionable interaction with Condvar",
458459
issue = "27746")]
459460
pub fn map<U: ?Sized, F>(this: Self, cb: F) -> RwLockReadGuard<'rwlock, U>
460-
where F: FnOnce(&'rwlock T) -> &'rwlock U
461+
where F: FnOnce(&T) -> &U
461462
{
462463
let new = RwLockReadGuard {
463464
__lock: this.__lock,
@@ -504,10 +505,11 @@ impl<'rwlock, T: ?Sized> RwLockWriteGuard<'rwlock, T> {
504505
/// assert_eq!(&**x.read().unwrap(), &[10, 2]);
505506
/// ```
506507
#[unstable(feature = "guard_map",
507-
reason = "recently added, needs RFC for stabilization",
508+
reason = "recently added, needs RFC for stabilization,
509+
questionable interaction with Condvar",
508510
issue = "27746")]
509511
pub fn map<U: ?Sized, F>(this: Self, cb: F) -> RwLockWriteGuard<'rwlock, U>
510-
where F: FnOnce(&'rwlock mut T) -> &'rwlock mut U
512+
where F: FnOnce(&mut T) -> &mut U
511513
{
512514
// Compute the new data while still owning the original lock
513515
// in order to correctly poison if the callback panics.

0 commit comments

Comments
 (0)