Just installed the latest build ActivePerl-5.28.1.0000-MSWin32-x64-c50440fa on Windows 10.
Still same issue.
Free to wrong pool 1058f40 not 9500a400f0da1dd4 at E:/Perl64/site/lib/IO/Socket/SSL.pm line 2739
Code is so simple. it is pasted below.
Works (and always did):
perl http.pl (https url to google homepage) 1
(prints out www.google.com page contents to stdout)
Still doesn’t work:
perl http.pl https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html 1
Actual: Free to wrong pool 1058f40 not 9500a400f0da1dd4 at E:/Perl64/site/lib/IO/Socket/SSL.pm line 2739
Expected: prints contents of the webpage at the url above
This error really needs to be fixed. Can someone point me to how to file a ticket, or to where the existing ticket is?
Here’s my code:
http.pl:
use LWP::Simple;
my $cuteMessage = " **For more info, look";
my $url = @ARGV[0];
my $debug = @ARGV[1];
if ($debug eq ‘1’) { $debug = true; };
if ($url eq ‘’) { die “*please specify a url on the command line.” . $cuteMessage; }
my $contents = get($url);
if ($debug) { print $contents; }