From: Shawn Boyette Date: Mon, 18 Aug 2008 20:48:57 +0000 (+0000) Subject: more catches X-Git-Url: http://git.equinoxoli.org/?p=migration-tools.git;a=commitdiff_plain;h=e17c9ee5b049fada8b14199fa1dbdf73ec7cca47;hp=24f348c936208275addf1dc83971a1bf1d665921 more catches --- diff --git a/fingerprinter b/fingerprinter index addeaaf..9ee6c19 100755 --- a/fingerprinter +++ b/fingerprinter @@ -75,7 +75,7 @@ sub populate_marc { # date1, date2 my $my_008 = $record->field('008'); $my_008 = $my_008->as_string() if ($my_008); - unless (length $my_008 == 40) + unless (defined $my_008 and length $my_008 == 40) { print XF ">> Bad 008 field length in rec. $id\n"; return \%marc } $marc{date1} = substr($my_008,7,4) if ($my_008); $marc{date2} = substr($my_008,11,4) if ($my_008); # UNUSED