summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2010-09-06 17:30:23 +0200
committerFlorian Ragwitz <rafl@debian.org>2010-09-06 17:30:58 +0200
commitf4beb78fd10010ccab9244d530380241272496fd (patch)
tree353d9e730878a00ee528b3a59581c7d077133533 /pod
parent7dcb9b98df566764105b8c15283b393878a1788e (diff)
downloadperl-f4beb78fd10010ccab9244d530380241272496fd.tar.gz
A couple of perldelta fixes
Diffstat (limited to 'pod')
-rw-r--r--pod/perldelta.pod8
1 files changed, 7 insertions, 1 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index a2da79decf..519bcc4e1c 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -433,7 +433,7 @@ L</Modules and Pragmata>.
=item *
-A regression introduced in perl 5.10.0, making
+A regression introduced in perl 5.12.0, making
C<< my $x = 3; $x = length(undef) >> result in C<$x> set to C<3> has been
fixed. C<$x> will now be C<undef>.
@@ -466,6 +466,12 @@ objects has been fixed (RT#77084).
Magic applied to variables in the main package no longer affects other
packages. See L</Magic Variables Outside the Main Package>, above [perl #76138].
+=item *
+
+Opening a glob reference via C<< open $fh, ">", \*glob >> will no longer cause
+the glob to be corrupted when the file handle is printed to. This would cause
+perl to crash whenever the glob's contents were accessed [perl #77492].
+
=back
=head1 Known Problems