X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=odr%2Fber_oct.c;h=1114aa6329287b0908acc4d8eef88019865e4624;hb=88ad85bd973c764146777e7cfe2e4a56c71994b9;hp=41c568be99e54b640f3c75c06d61c9cffa047869;hpb=a7d28a25277a208edb9c44d124f179cc2be6db70;p=yaz-moved-to-github.git diff --git a/odr/ber_oct.c b/odr/ber_oct.c index 41c568b..1114aa6 100644 --- a/odr/ber_oct.c +++ b/odr/ber_oct.c @@ -4,33 +4,20 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: ber_oct.c,v $ - * Revision 1.1 1995-02-02 16:21:52 quinn + * Revision 1.3 1995-02-03 17:04:34 quinn + * *** empty log message *** + * + * Revision 1.2 1995/02/02 20:38:50 quinn + * Updates. + * + * Revision 1.1 1995/02/02 16:21:52 quinn * First kick. * */ #include -static int more_chunks(ODR o, unsigned char *base, int len) -{ - if (!len) - return 0; - if (len < 0) /* indefinite length */ - { - if (*o->bp == 0 && *(o->bp + 1) == 0) - { - o->bp += 2; - o->left -= 2; - return 0; - } - else - return 1; - } - else - return o->bp - base < len; -} - -int ber_octetstring(ODR o, ODR_OCT *p, int cons) +int ber_octetstring(ODR o, Odr_oct *p, int cons) { int res, len; unsigned char *base, *c; @@ -45,7 +32,7 @@ int ber_octetstring(ODR o, ODR_OCT *p, int cons) if (cons) /* fetch component strings */ { base = o->bp; - while (more_chunks(o, base, len)) + while (odp_more_chunks(o, base, len)) if (!odr_octetstring(o, &p, 0)) return 0; return 1; @@ -57,7 +44,7 @@ int ber_octetstring(ODR o, ODR_OCT *p, int cons) return 1; if (len > p->size - p->len) { - c = nalloc(o, p->size += len); + c = nalloc(o, p->size += len + 1); if (p->len) memcpy(c, p->buf, p->len); p->buf = c;