Skip Menu |

This queue is for tickets about the Games-Go-Sgf2Dg CPAN distribution.

Report information
The Basics
Id: 116213
Status: new
Priority: 0/
Queue: Games-Go-Sgf2Dg

People
Owner: Nobody in particular
Requestors: MAUKE [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 4.252
Fixed in: (no value)



Subject: -break option is broken
See http://stackoverflow.com/questions/38412658/sgf2dg-and-perl-use-of-uninitialized-value-in-pattern-match-m for details. Short version (https://metacpan.org/source/REID/Games-Go-Sgf2Dg-4.252/lib/Games/Go/Sgf2Dg.pm#L1414-1420): my $breaks = ''; while (@ARGV and $ARGV[0] =! m/[\d,]*/) { $breaks .= shift @ARGV; } should be replaced by: my $breaks = shift @ARGV;