X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=util%2Fmarcdump.c;h=c4b75ff7225b172975c545d19b587be5a3574e68;hp=b32969648ae538979da6fcc0090ada1e3b1248da;hb=dc720b90d5ff1d5c5a1821de3a0e335eb64a1951;hpb=cc7d1eb374c88d7b2f56df13977278873b1e7f5a diff --git a/util/marcdump.c b/util/marcdump.c index b329696..c4b75ff 100644 --- a/util/marcdump.c +++ b/util/marcdump.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2007, Index Data ApS * See the file LICENSE for details. * - * $Id: marcdump.c,v 1.48 2007-02-17 10:53:06 adam Exp $ + * $Id: marcdump.c,v 1.49 2007-03-08 12:45:02 adam Exp $ */ #define _FILE_OFFSET_BITS 64 @@ -235,6 +235,15 @@ static void dump(const char *fname, const char *from, const char *to, r = fread (buf + 5, 1, rlen, inf); if (r < rlen) break; + while (buf[len-1] != ISO2709_RS) + { + if (len > sizeof(buf)-2) + break; + r = fread (buf + len, 1, 1, inf); + if (r != 1) + break; + len++; + } if (split_fname) { char fname[256];