X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=ztest%2Fread-marc.c;h=09fecc7dd3f5a7bda3db21826ff42353cfd86e84;hb=cad33850686850356e9c7da4591abf9cab3193a2;hp=e1ecb3b691549fed4c2dbc1518b3b99476c36cef;hpb=04b09c082a7882398a10d5ec62e80ac175fe2a9b;p=yaz-moved-to-github.git diff --git a/ztest/read-marc.c b/ztest/read-marc.c index e1ecb3b..09fecc7 100644 --- a/ztest/read-marc.c +++ b/ztest/read-marc.c @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2008 Index Data + * Copyright (C) 1995-2010 Index Data * See the file LICENSE for details. */ @@ -1578,6 +1578,9 @@ char *dummy_marc_record (int num, ODR odr) inf = fopen ("dummy-records", "r"); if (!inf) { /* file not there. Get them from fixed array */ + if (num < 1) + return 0; + return marc_records[(num-1) % 24]; if (num < 1 || num > 24) return 0; return marc_records[num-1]; @@ -1619,6 +1622,7 @@ char *dummy_xml_record (int num, ODR odr) /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab