X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;ds=sidebyside;f=odr%2Fodr_seq.c;h=d682c3f7cd098154ddbcaa381c935142552fa4e3;hb=73664b466cb0c5e9478b4af7c5d4ebed1f2db49e;hp=66377f83bf7af1691997b110da1b6433ca280e6f;hpb=a7a4ea3451105aa7dea1e4b2a3e7062dfbc727bc;p=yaz-moved-to-github.git diff --git a/odr/odr_seq.c b/odr/odr_seq.c index 66377f8..d682c3f 100644 --- a/odr/odr_seq.c +++ b/odr/odr_seq.c @@ -4,7 +4,11 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: odr_seq.c,v $ - * Revision 1.16 1995-09-29 17:12:26 quinn + * Revision 1.17 1997-05-05 11:21:09 adam + * In handling of SEQUENCE OF: Counter set to zero when SEQUENCE + * OF isn't there at all. + * + * Revision 1.16 1995/09/29 17:12:26 quinn * Smallish * * Revision 1.15 1995/09/27 15:03:00 quinn @@ -98,8 +102,12 @@ int odr_sequence_of(ODR o, Odr_fun type, void *p, int *num) char **tmp = 0; int size = 0, i; - if (!odr_sequence_begin(o, p, 0)) + if (!odr_sequence_begin(o, p, 0)) { + if (o->direction == ODR_DECODE) { + *num = 0; + } return 0; + } switch (o->direction) {