diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-07-13 08:33:04 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-07-13 08:33:04 -0700 |
commit | df5b44bdfe830f78553acaf5cac89006e6afed88 (patch) | |
tree | 488255ec65fbc4e490dc82bad45ab2459e3bd8c8 | |
parent | 823618650f6b1dfdf623ec8e13b87969c7c3a2f1 (diff) | |
download | perl-df5b44bdfe830f78553acaf5cac89006e6afed88.tar.gz |
perldelta for recent SvREADONLY fixes
-rw-r--r-- | pod/perldelta.pod | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod index f369b75561..132822cd99 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -580,6 +580,14 @@ calls has been fixed. Previously, returning a value in nested rvalue context would be treated as lvalue context by the inner subroutine call, resulting in some values (such as read-only values) being rejected. +=item * + +Some core bugs affecting L<Hash::Util> have been fixed: locking a hash +element that is a glob copy no longer causes subsequent assignment to it to +corrupt the glob, and unlocking a hash element that holds a copy-on-write +scalar no longer causes modifications to that scalar to modify other +scalars that were sharing the same string buffer. + =back =head1 Known Problems |