From e17c9ee5b049fada8b14199fa1dbdf73ec7cca47 Mon Sep 17 00:00:00 2001 From: Shawn Boyette Date: Mon, 18 Aug 2008 20:48:57 +0000 Subject: [PATCH] more catches --- fingerprinter | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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 -- 1.7.2.5