Skip Menu |

This queue is for tickets about the MARC-Record CPAN distribution.

Report information
The Basics
Id: 62296
Status: resolved
Priority: 0/
Queue: MARC-Record

People
Owner: Nobody in particular
Requestors: robin [...] kallisti.net.nz
Cc:
AdminCc:

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



Subject: Module declares "use Carp qw(croak)", and then attempts to use 'carp'
if ($reclen > 99999) { carp( "Record length of $reclen is larger than the MARC spec allows (99999 bytes)." ); } this causes an exception due to 'carp' not being imported.
From: dubyk [...] ukr.net
Срд Окт 20 03:45:02 2010, Eythian писал: Show quoted text
> if ($reclen > 99999) { > carp( "Record length of $reclen is larger than the MARC spec > allows (99999 bytes)." ); > } > > this causes an exception due to 'carp' not being imported.
Also confirm this problem! We need: use Carp qw(croak carp);