Skip Menu |

This queue is for tickets about the DBM-Deep CPAN distribution.

Report information
The Basics
Id: 17947
Status: resolved
Worked: 30 min
Priority: 0/
Queue: DBM-Deep

People
Owner: RKINYON [...] cpan.org
Requestors: rjbs [...] cpan.org
Cc:
AdminCc:

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



Subject: can't install on 5.6.1
This test causes 5.6.1 to die: is( $db->[-6], undef, "-6th index is undef" ); It's in 04_array.t This is because is uses a prototype, which ends up doing this: Modification of non-creatable value... This fixes the test: is( ($db->[-6] || undef), undef, "-6th index is undef" ); (thanks for the simple fix, HDP) Automated installs on crufty perls are broken without this fix. -- rjbs
This has been fixed in 0.981 which should be winging its way to CPAN as we speak.