From: Adam Dickmeiss Date: Wed, 28 Aug 2002 19:10:56 +0000 (+0000) Subject: Fix infinite loop (bug introduced by previous commit) X-Git-Tag: YAZ.1.9~29 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=d262777bcc71cadd8356f19da6eb70a76ad0d0e3 Fix infinite loop (bug introduced by previous commit) --- diff --git a/retrieval/d1_marc.c b/retrieval/d1_marc.c index f485ffb..2252a8c 100644 --- a/retrieval/d1_marc.c +++ b/retrieval/d1_marc.c @@ -3,7 +3,7 @@ * See the file LICENSE for details. * Sebastian Hammer, Adam Dickmeiss * - * $Id: d1_marc.c,v 1.25 2002-08-28 12:44:35 adam Exp $ + * $Id: d1_marc.c,v 1.26 2002-08-28 19:10:56 adam Exp $ */ @@ -172,6 +172,10 @@ static char *get_data(data1_node *n, int *len) } if (n->which == DATA1N_tag) n = n->child; + else if (n->which == DATA1N_data) + n = n->next; + else + break; } r = ""; *len = strlen(r);