Skip Menu |

This queue is for tickets about the Tie-Watch CPAN distribution.

Report information
The Basics
Id: 23508
Status: resolved
Priority: 0/
Queue: Tie-Watch

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

Bug Information
Severity: Important
Broken in: 1.2
Fixed in: (no value)



Subject: Test failure with bleedperl
The Tie::Watch test fails with perl5.9.5 (patch 29319): Can't use string ("5") as an ARRAY ref while "strict refs" in use at blib/lib/Tie/Watch.pm line 496. The problem may be fixed if changing the line 496 from sub Storesize {$#{@{$_[0]->{-ptr}}} = $_[1] - 1} (which seems to use non-valid syntax) to sub Storesize {$#{$_[0]->{-ptr}} = $_[1] - 1} Regards, Slaven
Was in the meanwhile fixed, it seems...