When I run this code, I get "no" printed out:
my $memory_file;
my $fh;
open ($fh, '>', \$memory_file);
print $fh "abc";
if( $memory_file =~ m/^.*$/ )
{ print "yes\n" }
else
{ print "no\n" }
If I print out $memory_file, the contents are indeed "abc".
If I change the pattern to .* (no ^ or $) it works as expected.
If I put the line $memory_file = "abc" before the match, I get 'yes' printed out (as originally expected).
What on earth is going on here?
(This is perl 5.14.1)
Update: Some more discussion on PerlMonks. It is seeming like a bug, I will log it.
Update 2: The fine Perl developers have fixed this bug: https://rt.perl.org/rt3//Public/Bug/Display.html?id=108398
perldoc perlbug) – toolic Dec 28 '11 at 1:52