X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=odr%2Fodr_seq.c;h=1fede3d5f7aee979505cca6812fbbfd8c179e554;hb=113640450c45ca7ac96285cc8ca666bfd597ed21;hp=7597d28b9cbc486a08a449920ae6e506da690693;hpb=bf4149c63ad2e11429e302a89f472de52b4d7ce8;p=yaz-moved-to-github.git diff --git a/odr/odr_seq.c b/odr/odr_seq.c index 7597d28..1fede3d 100644 --- a/odr/odr_seq.c +++ b/odr/odr_seq.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: odr_seq.c,v $ - * Revision 1.18 1997-05-14 06:53:58 adam + * Revision 1.19 1997-06-23 10:31:11 adam + * Added RVDM's SEQUENCE OF patch again! + * + * Revision 1.18 1997/05/14 06:53:58 adam * C++ support. * * Revision 1.17 1997/05/05 11:21:09 adam @@ -105,8 +108,11 @@ 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) {