Bugzilla – Attachment 23620 Details for
Bug 11412
Bulkmarcimport can crash when searching for duplicates
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
proposed patch
0001-BZ11412-Bulkmarcimport-can-crash-when-searching-for-.patch (text/plain), 1.31 KB, created by
Matthias Meusburger
on 2013-12-18 10:23:40 UTC
(
hide
)
Description:
proposed patch
Filename:
MIME Type:
Creator:
Matthias Meusburger
Created:
2013-12-18 10:23:40 UTC
Size:
1.31 KB
patch
obsolete
>From dc7de751a271671f442edbcff6da9545525bffbb Mon Sep 17 00:00:00 2001 >From: Matthias Meusburger <matthias.meusburger@biblibre.com> >Date: Wed, 18 Dec 2013 11:20:05 +0100 >Subject: [PATCH] BZ11412: Bulkmarcimport can crash when searching for > duplicates > >bulkmarcimport.pl can crash when searching for duplicates if the 005 field from >the incoming or local record is not defined. This patch fixes it. >--- > misc/migration_tools/bulkmarcimport.pl | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > >diff --git a/misc/migration_tools/bulkmarcimport.pl b/misc/migration_tools/bulkmarcimport.pl >index 9ca7b31..3b7befd 100755 >--- a/misc/migration_tools/bulkmarcimport.pl >+++ b/misc/migration_tools/bulkmarcimport.pl >@@ -245,7 +245,8 @@ RECORD: while ( ) { > $id = GetRecordId( $marcrecord, $tagid, $subfieldid ); > if ( $authorities && $marcFlavour ) { > #Skip if authority in database is the same as the on in database >- if ( $marcrecord->field('005')->data >= $record->field('005')->data ) { >+ if ( $marcrecord->field('005') && $record->field('005')->data && >+ $marcrecord->field('005')->data >= $record->field('005')->data ) { > if ($yamlfile) { > $yamlhash->{$originalid}->{'authid'} = $id; > >-- >1.8.3.2 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 11412
:
23620
|
23621
|
23754
|
23819