user-1525
10-06-2018, 04:40 PM
I'm seeing a lot of instances of the following error just recently.
panic: memory wrap at C:\Program Files (x86)\get_iplayer\get_iplayer.cgi line 290.
Line 290 falls in this block and is underlined for clarity
while (my $client = $server->accept()) {
my $procid = fork();
die "Cannot fork" unless defined $procid;
# Parent
if ( $procid ) {
close $client;
# must call waitpid() on Windows
if ( IS_WIN32 ) {
290 while ( abs(waitpid(-1, WNOHANG)) > 1 ) {}
}
next;
Running on a Win 10-64 16GB RAM system that isn't responding oddly in any other ways.
I'm no Perl expert, which is why I'm asking for any thoughts on a possible cause or cure?PVR
panic: memory wrap at C:\Program Files (x86)\get_iplayer\get_iplayer.cgi line 290.
Line 290 falls in this block and is underlined for clarity
while (my $client = $server->accept()) {
my $procid = fork();
die "Cannot fork" unless defined $procid;
# Parent
if ( $procid ) {
close $client;
# must call waitpid() on Windows
if ( IS_WIN32 ) {
290 while ( abs(waitpid(-1, WNOHANG)) > 1 ) {}
}
next;
Running on a Win 10-64 16GB RAM system that isn't responding oddly in any other ways.
I'm no Perl expert, which is why I'm asking for any thoughts on a possible cause or cure?PVR